From 4b7ef011bf8d2e532a1944f0ff423163588a6878 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian Date: Fri, 9 Apr 2010 20:32:23 -0700 Subject: 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 --- init | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init b/init index 7d0db07..142eb14 100755 --- a/init +++ b/init @@ -175,6 +175,9 @@ for x in $(cat /proc/cmdline); do netconsole=*) netconsole=${x#netconsole=} ;; + BOOTIF=*) + BOOTIF=${x#BOOTIF=} + ;; esac done -- cgit v1.2.3