Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archiso/hooks/archiso-early
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
commit0319f53fd4843b580a33f9313df7de549984e990 (patch)
treeff77067648db0ee227f095cf33daa65b4640dffa /archiso/hooks/archiso-early
parent7e21e96a836ba5a4e7b2cca3fe9e0fa750f73a01 (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-early')
-rw-r--r--archiso/hooks/archiso-early8
1 files changed, 8 insertions, 0 deletions
diff --git a/archiso/hooks/archiso-early b/archiso/hooks/archiso-early
new file mode 100644
index 0000000..0a83218
--- /dev/null
+++ b/archiso/hooks/archiso-early
@@ -0,0 +1,8 @@
+# vim: set ft=sh:
+run_hook ()
+{
+ # Set our usbdelay time. Default: 0
+ /bin/mkdir -p /etc/modprobe.d/
+ echo "options usb-storage delay_use=${usbdelay:-0}" >/
+ /etc/modprobe.d/usb-delay
+}