added usb-storage hotpluging

SVN-Revision: 7684
v19.07.3_mercusys_ac12_duma
John Crispin 17 years ago
parent fa799b9b4c
commit 2fe37ccdf6

@ -0,0 +1,13 @@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
case "$ACTION" in
add)
[ -n "${INTERFACE}" ] &&
[ "$(expr substr ${INTERFACE} 1 2)" == "8/" ] && {
/sbin/usb-storage &
}
;;
esac

@ -0,0 +1,28 @@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
logger "usb device is mass storage"
i=0
while [ $i -le 10 ]; do
logger "waiting on usb drive $i ..."
i=$(($i+1))
cd /sys${DEVPATH}
for blk in `find host* -type d`; do
cd /sys/${DEVPATH}/${blk}
BLK=$(find block* -type l 2> /dev/null)
[ -n "${BLK}" ] && {
cd /sys${DEVPATH}/${blk}/${BLK}
ls /dev/ > /tmp/d
sleep 2
for node in `find sd* -type d | grep -v "/"`; do
echo "mounting /dev/${node} on /mnt/usbdrive"
mkdir -p /mnt/usbdrive
mount /dev/${node} /mnt/usbdrive
exit 0
done
}
done
sleep 1
done

@ -17,6 +17,6 @@ FIRMWARE is set {
next
}
SUBSYSTEM ~~ (net|button) {
SUBSYSTEM ~~ (net|button|usb) {
exec /sbin/hotplug-call %SUBSYSTEM%;
}

Loading…
Cancel
Save