From: Martin Kepplinger Date: Wed, 18 Dec 2024 12:36:38 +0000 (+0000) Subject: init: fix removal warning for deprecated initrd loading X-Git-Tag: v6.14-rc1~78^2~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=052e97d9b7716a690a638da130b8d4522aabfc4f;p=thirdparty%2Flinux.git init: fix removal warning for deprecated initrd loading This won't be removed in 2021, no matter how hard we try. Link: https://lkml.kernel.org/r/20241218123638.34907-1-martink@posteo.de Signed-off-by: Martin Kepplinger Cc: Christoph Hellwig Cc: Joel Granados Signed-off-by: Andrew Morton --- diff --git a/init/do_mounts_initrd.c b/init/do_mounts_initrd.c index 22c7f41ff6422..f86ef92a6c461 100644 --- a/init/do_mounts_initrd.c +++ b/init/do_mounts_initrd.c @@ -89,7 +89,7 @@ static void __init handle_initrd(char *root_device_name) extern char *envp_init[]; int error; - pr_warn("using deprecated initrd support, will be removed in 2021.\n"); + pr_warn("using deprecated initrd support, will be removed soon.\n"); real_root_dev = new_encode_dev(ROOT_DEV); create_dev("/dev/root.old", Root_RAM0);