diff options
author | Steven Shiau <steven@nchc.org.tw> | 2012-08-05 13:37:29 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-08-14 01:03:43 +0200 |
commit | 990d419eacf614710c838ef743aa10ec0612ed7a (patch) | |
tree | 34419ba14c50acf2edbdc0d4b9945aeabe15d377 /scripts/boot | |
parent | c9ff5aa627e4f51b98c9af9f8f897bd7f8511aa7 (diff) | |
download | live-boot-990d419eacf614710c838ef743aa10ec0612ed7a.tar.gz live-boot-990d419eacf614710c838ef743aa10ec0612ed7a.zip |
Reading /conf/param.conf after Select_eth_device in main function to fix network booting (Closes: #683240).
Diffstat (limited to 'scripts/boot')
-rwxr-xr-x | scripts/boot/9990-main.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/boot/9990-main.sh b/scripts/boot/9990-main.sh index 2cf1d7e..5732b2a 100755 --- a/scripts/boot/9990-main.sh +++ b/scripts/boot/9990-main.sh @@ -27,6 +27,11 @@ Main () Select_eth_device + if [ -e /conf/param.conf ] + then + . /conf/param.conf + fi + # Needed here too because some things (*cough* udev *cough*) # changes the timeout |