summaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/hotplug.d/block/01-mount
diff options
context:
space:
mode:
Diffstat (limited to 'package/base-files/default/etc/hotplug.d/block/01-mount')
-rwxr-xr-xpackage/base-files/default/etc/hotplug.d/block/01-mount26
1 files changed, 0 insertions, 26 deletions
diff --git a/package/base-files/default/etc/hotplug.d/block/01-mount b/package/base-files/default/etc/hotplug.d/block/01-mount
deleted file mode 100755
index db8ccdabd..000000000
--- a/package/base-files/default/etc/hotplug.d/block/01-mount
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2006 OpenWrt.org
-
-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
- }; done
-
- [ ${DEV%%[0-9]} != ${DEV} ] && {
- mkdir -p /tmp/$DEV
- mount /dev/$DEV /tmp/$DEV -t auto -o sync
- }
- ;;
-remove)
- umount /tmp/$DEV && rmdir /tmp/$DEV
- rm -f /dev/$DEV /tmp/$DEV
- ;;
-esac
-} 2>&1 | logger