Link: https://lore.kernel.org/r/20260121181411.452263583@linuxfoundation.org Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Shuah Khan <skhan@linuxfoundation.org> Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Shung-Hsi Yu <shung-hsi.yu@suse.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Francesco Dolcini <francesco.dolcini@toradex.com> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Brett Mastbergen <bmastbergen@ciq.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
43 lines
862 B
C
43 lines
862 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* init/noinitramfs.c
|
|
*
|
|
* Copyright (C) 2006, NXP Semiconductors, All Rights Reserved
|
|
* Author: Jean-Paul Saman <jean-paul.saman@nxp.com>
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/stat.h>
|
|
#include <linux/kdev_t.h>
|
|
#include <linux/syscalls.h>
|
|
#include <linux/init_syscalls.h>
|
|
#include <linux/umh.h>
|
|
|
|
/*
|
|
* Create a simple rootfs that is similar to the default initramfs
|
|
*/
|
|
static int __init default_rootfs(void)
|
|
{
|
|
int err;
|
|
|
|
usermodehelper_enable();
|
|
err = init_mkdir("/dev", 0755);
|
|
if (err < 0)
|
|
goto out;
|
|
|
|
err = init_mknod("/dev/console", S_IFCHR | S_IRUSR | S_IWUSR,
|
|
new_encode_dev(MKDEV(5, 1)));
|
|
if (err < 0)
|
|
goto out;
|
|
|
|
err = init_mkdir("/root", 0700);
|
|
if (err < 0)
|
|
goto out;
|
|
|
|
return 0;
|
|
|
|
out:
|
|
printk(KERN_WARNING "Failed to create a rootfs\n");
|
|
return err;
|
|
}
|
|
rootfs_initcall(default_rootfs);
|