aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d/block
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2006-11-28 18:37:37 +0000
committerMike Baker <mbm@openwrt.org>2006-11-28 18:37:37 +0000
commit64b7e4e4cf5008d687a24b6456278f700b021cf0 (patch)
tree22275524c5edbee2c266470789df454bd5b330c6 /package/base-files/files/etc/hotplug.d/block
parentbf8dda030c9a3ea351c40bd74030d4e19ed2290b (diff)
downloadupstream-64b7e4e4cf5008d687a24b6456278f700b021cf0.tar.gz
upstream-64b7e4e4cf5008d687a24b6456278f700b021cf0.tar.bz2
upstream-64b7e4e4cf5008d687a24b6456278f700b021cf0.zip
small tweaks to the usb disk hotplug scripts
SVN-Revision: 5667
Diffstat (limited to 'package/base-files/files/etc/hotplug.d/block')
-rwxr-xr-xpackage/base-files/files/etc/hotplug.d/block/01-mount7
1 files changed, 3 insertions, 4 deletions
diff --git a/package/base-files/files/etc/hotplug.d/block/01-mount b/package/base-files/files/etc/hotplug.d/block/01-mount
index db8ccdabd6..5ed3ef060b 100755
--- a/package/base-files/files/etc/hotplug.d/block/01-mount
+++ b/package/base-files/files/etc/hotplug.d/block/01-mount
@@ -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