mirror of
https://github.com/torvalds/linux.git
synced 2026-03-07 23:04:33 +01:00
Remove linuxrc initrd code path, which was deprecated in 2020. Initramfs and (non-initial) RAM disks (i. e. brd) still work. Both built-in and bootloader-supplied initramfs still work. Non-linuxrc initrd code path (i. e. using /dev/ram as final root filesystem) still works, but I put deprecation message into it. Also I deprecate command line parameters "noinitrd" and "ramdisk_start=". Signed-off-by: Askar Safin <safinaskar@gmail.com> Link: https://patch.msgid.link/20251119222407.3333257-3-safinaskar@gmail.com Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Christian Brauner <brauner@kernel.org>
42 lines
1 KiB
C
42 lines
1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <linux/kernel.h>
|
|
#include <linux/blkdev.h>
|
|
#include <linux/init.h>
|
|
#include <linux/syscalls.h>
|
|
#include <linux/unistd.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/mount.h>
|
|
#include <linux/major.h>
|
|
#include <linux/root_dev.h>
|
|
#include <linux/init_syscalls.h>
|
|
#include <linux/task_work.h>
|
|
#include <linux/file.h>
|
|
|
|
void mount_root_generic(char *name, char *pretty_name, int flags);
|
|
void mount_root(char *root_device_name);
|
|
extern int root_mountflags;
|
|
|
|
static inline __init int create_dev(char *name, dev_t dev)
|
|
{
|
|
init_unlink(name);
|
|
return init_mknod(name, S_IFBLK | 0600, new_encode_dev(dev));
|
|
}
|
|
|
|
#ifdef CONFIG_BLK_DEV_RAM
|
|
int __init rd_load_image(void);
|
|
#else
|
|
static inline int rd_load_image(void) { return 0; }
|
|
#endif
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
|
void __init initrd_load(void);
|
|
#else
|
|
static inline void initrd_load(void) { }
|
|
#endif
|
|
|
|
/* Ensure that async file closing finished to prevent spurious errors. */
|
|
static inline void init_flush_fput(void)
|
|
{
|
|
flush_delayed_fput();
|
|
task_work_run();
|
|
}
|