b3d8310dcb
Wrong slash! No idea how that happened :) Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
9 lines
201 B
Bash
9 lines
201 B
Bash
# vim: set ft=sh:
|
|
run_hook ()
|
|
{
|
|
# Set our usbdelay time. Default: 0
|
|
cd /
|
|
/bin/mkdir -p etc/modprobe.d/
|
|
echo "options usb-storage delay_use=${usbdelay:-0}" > /etc/modprobe.d/usb-delay
|
|
}
|