diff options
author | Vagrant Cascadian <vagrant+debianbugs@freegeek.org> | 2010-04-09 20:32:23 -0700 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2010-04-10 06:39:45 +0200 |
commit | 4b7ef011bf8d2e532a1944f0ff423163588a6878 (patch) | |
tree | 9b6038c0220f769d145a9186bb0ae1648d918e8e | |
parent | 5db5becc85059e56075de5a331ed7c5a4cc2de0c (diff) | |
download | initramfs-tools-4b7ef011bf8d2e532a1944f0ff423163588a6878.tar.gz initramfs-tools-4b7ef011bf8d2e532a1944f0ff423163588a6878.zip |
init: add BOOTIF bootarg
as mentioned by Christoph Bussenius in #535008, it does appear that
setting BOOTIF from the value in /proc/cmdline is needed. at the time
i wrote the patch, i'm not sure it was, but it definitely is now.
with these patchese applied, it seems to work. at least for the moment.
Signed-off-by: maximilian attems <maks@debian.org>
-rwxr-xr-x | init | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -175,6 +175,9 @@ for x in $(cat /proc/cmdline); do netconsole=*) netconsole=${x#netconsole=} ;; + BOOTIF=*) + BOOTIF=${x#BOOTIF=} + ;; esac done |