9 lines
202 B
Plaintext
9 lines
202 B
Plaintext
|
# 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
|
||
|
}
|