diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2008-03-09 01:41:02 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2008-03-09 01:41:02 +0000 |
commit | 84c5f5d53e3417913c75df26cf33678efe0a148e (patch) | |
tree | 29203e7adcc350127a79596a6ebad3747e56d0e4 /packages/initrdscripts/files/init.sh | |
parent | 8fd3f13e159ef7506aeed77b3ad2120f91492aae (diff) |
initramfs-uniboot: Set default rootdelay globally, instead of initramfs-module-bootmenu.
* That's because otherwise it's half-solution - after kexec, there won't be
delay, and rootfs won't be detected.
* Again, people who don't need and don't want delay, should pass rootdelay=0.
Diffstat (limited to 'packages/initrdscripts/files/init.sh')
-rw-r--r-- | packages/initrdscripts/files/init.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/initrdscripts/files/init.sh b/packages/initrdscripts/files/init.sh index 06b9119a1c..60d2e5da8b 100644 --- a/packages/initrdscripts/files/init.sh +++ b/packages/initrdscripts/files/init.sh @@ -67,6 +67,11 @@ load_modules '0*' read_args +if [ -z "$rootdelay" ]; then + echo "rootdelay parameter was not passed on kernel command line - assuming 2s delay" + echo "If you would like to avoid this delay, pass explicit rootdelay=0" + rootdelay="2" +fi if [ -n "$rootdelay" ]; then echo "Waiting $rootdelay seconds for devices to settle..." >$CONSOLE sleep $rootdelay |