2
0
forked from Ivasoft/openwrt

small tweaks to the usb disk hotplug scripts

SVN-Revision: 5667
This commit is contained in:
Mike Baker
2006-11-28 18:37:37 +00:00
parent bf8dda030c
commit 64b7e4e4cf
2 changed files with 5 additions and 6 deletions

View File

@@ -3,15 +3,15 @@
DEV=${DEVPATH##*/}
{
echo "ACTION=$ACTION DEVPATH=$DEVPATH $0 $*"
case "$ACTION" in
add)
echo -ne "waiting for $DEV"
while [ ! -b /dev/$DEV ]; do {
echo -ne "."
sleep 1
time=$((time+1)); [ $time -gt 10 ] && break
[ $((++time)) -gt 10 ] && break
}; done
echo
[ ${DEV%%[0-9]} != ${DEV} ] && {
mkdir -p /tmp/$DEV
@@ -19,8 +19,7 @@ add)
}
;;
remove)
umount /tmp/$DEV && rmdir /tmp/$DEV
rm -f /dev/$DEV /tmp/$DEV
umount /tmp/$DEV && rm -f /dev/$DEV /tmp/$DEV
;;
esac
} 2>&1 | logger