diff options
author | Mike Westerhof <mwester@dls.net> | 2008-08-25 06:23:27 +0000 |
---|---|---|
committer | Mike Westerhof <mwester@dls.net> | 2008-08-25 06:23:27 +0000 |
commit | 36c64170765ecb2b2437e9b58d9ff5e262b186a8 (patch) | |
tree | 2d5b6abe48414d8c15968fe14720786969386a36 /packages/slugos-init/files/boot/network | |
parent | 69cd4b590282088c35967213d400e480150d43c8 (diff) |
SlugOS 5.0 - slugos-init: update to make nfs boot work correctly; cleanup
of kexec stuff (although kexec won't work with the current kernel yet).
Diffstat (limited to 'packages/slugos-init/files/boot/network')
-rw-r--r-- | packages/slugos-init/files/boot/network | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/packages/slugos-init/files/boot/network b/packages/slugos-init/files/boot/network index 8124f19ab2..48aa9dd7d5 100644 --- a/packages/slugos-init/files/boot/network +++ b/packages/slugos-init/files/boot/network @@ -24,8 +24,12 @@ ifconfig lo 127.0.0.1 up iface="$(config iface)" test -z "$iface" && exit 1 # -# Fire up a process in the background to load the firmware if necessary -sysf="/sys/class/firmware/firmware-$iface" +# Fire up a process in the background to load the firmware if necessary. +# If this system doesn't require the NPE-B firmware, no problem, the +# background process will simply go away in two seconds. If it requires +# some other firmware, then modification will be required. We probably +# should replace this with mdev or some other hotplug-based technique... +sysf="/sys/class/firmware/$iface" ( # Wait for the firware to be requested, if required [ -f $sysf/loading ] || sleep 1 @@ -39,5 +43,9 @@ sysf="/sys/class/firmware/firmware-$iface" # Trigger the firmware load proactively ifconfig "$iface" up # +# Unmount /sys and /proc before we leave +umount /sys +umount /proc +# ifup "$iface" # exit code is true only if the interface config has succeeded |