summaryrefslogtreecommitdiff
path: root/archiso/hooks/archiso
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2009-01-24 20:17:54 -0600
committerAaron Griffin <aaronmgriffin@gmail.com>2009-01-24 20:17:54 -0600
commit8a37489379914910a140c313ca50a5e502f9f92e (patch)
treed70947b516d40fa730c1d6cac4b231a5169822d2 /archiso/hooks/archiso
parent7b2dea215ed5a1a088c5cc5f40358094906a3487 (diff)
Advanced USB delay handling
USB boot delay is now handled with the usbdelay kernel param (default=0) We use the built in delay of usb-storage to control this. by setting the module's delay param. If your USB device doesn't work on first boot, try setting usbdelay=10 or so Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'archiso/hooks/archiso')
-rw-r--r--archiso/hooks/archiso8
1 files changed, 3 insertions, 5 deletions
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso
index d33e409..65e849e 100644
--- a/archiso/hooks/archiso
+++ b/archiso/hooks/archiso
@@ -54,13 +54,11 @@ run_hook ()
msg "done."
# external drives may need to settle
- msg ":: Waiting for usb devices to settle..."
+ msg ":: Waiting for devices to settle..."
/sbin/udevadm trigger --subsystem-match=usb
/sbin/udevadm settle
- if [ "${rootdelay}" != "0" ]; then
- /bin/sleep "${rootdelay}"
- export rootdelay=0
- fi
+ msg ":: Waiting ${usbdelay:-0}s for USB devices"
+ /bin/sleep "${usbdelay:-0}"
msg ":: Scanning for boot device..."