1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-03 00:32:20 +03:00

added usb-storage hotpluging

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7684 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
blogic 2007-06-20 22:05:15 +00:00
parent 37d063a852
commit b77baef885
3 changed files with 42 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

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