[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250130101758.GA1162582@lichtman.org>
Date: Thu, 30 Jan 2025 10:17:58 +0000
From: Nir Lichtman <nir@...htman.org>
To: gregkh@...uxfoundation.org, corbet@....net, paulmck@...nel.org,
akpm@...ux-foundation.org, rostedt@...dmis.org,
Neeraj.Upadhyay@....com, mcanal@...lia.com, thuth@...hat.com,
ardb@...nel.org, bp@...en8.de, linux-doc@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: rob@...dley.net
Subject: [PATCH v2] docs: clarify rdinit precedence and correct ramdisk to
initramfs
Problem: Documentation regarding init and rdinit params is confusing,
The description of rdinit claims it is related to ramdisks, even though
in practice it only controls the init executable of the initramfs
(the deprecated ramdisk mechanism is initialized only after attempting to
load rdinit or its default "/init")
Rob Landley's document from 2005 "Ramfs, rootfs and initramfs"
clarifies the distinction between initramfs and ramdisk.
Another confusing point is that the init param is ignored
in case rdinit or "/init" exist and are executable in the initramfs;
the source code gives priority to rdinit.
Solution:
- Add more clarification to the init= kernel param documentation
- Fix from ramdisk to initramfs in the rdinit= doc.
Signed-off-by: Nir Lichtman <nir@...htman.org>
---
v2: Fixed faulty line wrapping in patch
Documentation/admin-guide/kernel-parameters.txt | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
index fb8752b42ec8..246cb73f71a8 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -2182,6 +2182,8 @@
Format: <full_path>
Run specified binary instead of /sbin/init as init
process.
+ Note that rdinit= or /init if rdinit= is not set will take
+ precedence in case they are found in the initramfs.
initcall_debug [KNL] Trace initcalls as they are executed. Useful
for working out where the kernel is dying during
@@ -5933,8 +5935,8 @@
rdinit= [KNL]
Format: <full_path>
- Run specified binary instead of /init from the ramdisk,
- used for early userspace startup. See initrd.
+ Run specified binary instead of /init from the initramfs,
+ used for early userspace startup.
rdrand= [X86,EARLY]
force - Override the decision by the kernel to hide the
--
2.39.5
Powered by blists - more mailing lists