Thomas Gleixner | 873e65b | 2019-05-27 08:55:15 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Jean-Paul Saman | c33df4e | 2007-02-10 01:44:43 -0800 | [diff] [blame] | 2 | /* |
| 3 | * init/noinitramfs.c |
| 4 | * |
| 5 | * Copyright (C) 2006, NXP Semiconductors, All Rights Reserved |
| 6 | * Author: Jean-Paul Saman <jean-paul.saman@nxp.com> |
Jean-Paul Saman | c33df4e | 2007-02-10 01:44:43 -0800 | [diff] [blame] | 7 | */ |
| 8 | #include <linux/init.h> |
| 9 | #include <linux/stat.h> |
| 10 | #include <linux/kdev_t.h> |
| 11 | #include <linux/syscalls.h> |
Christoph Hellwig | 83ff98c | 2020-07-22 11:14:59 +0200 | [diff] [blame] | 12 | #include <linux/init_syscalls.h> |
Rasmus Villemoes | b234ed6d | 2021-09-07 20:00:03 -0700 | [diff] [blame] | 13 | #include <linux/umh.h> |
Jean-Paul Saman | c33df4e | 2007-02-10 01:44:43 -0800 | [diff] [blame] | 14 | |
| 15 | /* |
| 16 | * Create a simple rootfs that is similar to the default initramfs |
| 17 | */ |
| 18 | static int __init default_rootfs(void) |
| 19 | { |
| 20 | int err; |
| 21 | |
Rasmus Villemoes | b234ed6d | 2021-09-07 20:00:03 -0700 | [diff] [blame] | 22 | usermodehelper_enable(); |
Christoph Hellwig | 83ff98c | 2020-07-22 11:14:59 +0200 | [diff] [blame] | 23 | err = init_mkdir("/dev", 0755); |
Jean-Paul Saman | c33df4e | 2007-02-10 01:44:43 -0800 | [diff] [blame] | 24 | if (err < 0) |
| 25 | goto out; |
| 26 | |
Christoph Hellwig | 5fee64f | 2020-07-22 11:41:20 +0200 | [diff] [blame] | 27 | err = init_mknod("/dev/console", S_IFCHR | S_IRUSR | S_IWUSR, |
Jean-Paul Saman | c33df4e | 2007-02-10 01:44:43 -0800 | [diff] [blame] | 28 | new_encode_dev(MKDEV(5, 1))); |
| 29 | if (err < 0) |
| 30 | goto out; |
| 31 | |
Christoph Hellwig | 83ff98c | 2020-07-22 11:14:59 +0200 | [diff] [blame] | 32 | err = init_mkdir("/root", 0700); |
Jean-Paul Saman | c33df4e | 2007-02-10 01:44:43 -0800 | [diff] [blame] | 33 | if (err < 0) |
| 34 | goto out; |
| 35 | |
| 36 | return 0; |
| 37 | |
| 38 | out: |
| 39 | printk(KERN_WARNING "Failed to create a rootfs\n"); |
| 40 | return err; |
| 41 | } |
| 42 | rootfs_initcall(default_rootfs); |