[systemd-commits] NEWS src/modules-load
Kay Sievers
kay at kemper.freedesktop.org
Mon Jul 2 06:07:05 PDT 2012
NEWS | 2 +-
src/modules-load/modules-load.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 91ac74250149a29122b2291c5393dec4592430d4
Author: Kay Sievers <kay at vrfy.org>
Date: Mon Jul 2 15:05:26 2012 +0200
modules load: rename kernel command line option to (rd.)modules-load=
diff --git a/NEWS b/NEWS
index 6f4afd3..82955f9 100644
--- a/NEWS
+++ b/NEWS
@@ -81,7 +81,7 @@ CHANGES WITH 186:
* The fstab generator may now be disabled at boot by passing
fstab=0 on the kernel command line.
- * A new kernel command line option driver= is now understood
+ * A new kernel command line option modules-load= is now understood
to load a specific kernel module statically, early at boot.
* Unit names specified on the systemctl command line are now
diff --git a/src/modules-load/modules-load.c b/src/modules-load/modules-load.c
index 1b887ae..3f3b018 100644
--- a/src/modules-load/modules-load.c
+++ b/src/modules-load/modules-load.c
@@ -90,13 +90,13 @@ static int parse_proc_cmdline(void) {
goto finish;
}
- if (startswith(word, "driver=")) {
+ if (startswith(word, "modules-load=")) {
r = add_modules(word + 7);
if (r < 0)
goto finish;
- } else if (startswith(word, "rd.driver=")) {
+ } else if (startswith(word, "rd.modules-load=")) {
if (in_initrd()) {
r = add_modules(word + 10);
More information about the systemd-commits
mailing list