added usb-storage hotpluging
SVN-Revision: 7684
This commit is contained in:
parent
fa799b9b4c
commit
2fe37ccdf6
3 changed files with 42 additions and 1 deletions
13
package/base-files/files/etc/hotplug.d/usb/10-usb-storage
Normal file
13
package/base-files/files/etc/hotplug.d/usb/10-usb-storage
Normal 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
|
||||||
|
|
28
package/base-files/files/sbin/usb-storage
Normal file
28
package/base-files/files/sbin/usb-storage
Normal 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
|
||||||
|
|
|
@ -17,6 +17,6 @@ FIRMWARE is set {
|
||||||
next
|
next
|
||||||
}
|
}
|
||||||
|
|
||||||
SUBSYSTEM ~~ (net|button) {
|
SUBSYSTEM ~~ (net|button|usb) {
|
||||||
exec /sbin/hotplug-call %SUBSYSTEM%;
|
exec /sbin/hotplug-call %SUBSYSTEM%;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue