summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d
diff options
context:
space:
mode:
Diffstat (limited to 'package/base-files/files/etc/hotplug.d')
-rwxr-xr-xpackage/base-files/files/etc/hotplug.d/block/01-mount25
1 files changed, 0 insertions, 25 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
deleted file mode 100755
index a34580cb9..000000000
--- a/package/base-files/files/etc/hotplug.d/block/01-mount
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2006 OpenWrt.org
-
-DEV=${DEVPATH##*/}
-{
-case "$ACTION" in
-add)
- echo -ne "waiting for $DEV"
- while [ ! -b /dev/$DEV ]; do {
- echo -ne "."
- sleep 1
- [ $((++time)) -gt 10 ] && break
- }; done
- echo
-
- [ ${DEV%%[0-9]} != ${DEV} -a ${DEV%%[0-9]} != "loop" ] && {
- mkdir -p /tmp/$DEV
- mount /dev/$DEV /tmp/$DEV -t auto -o sync
- }
- ;;
-remove)
- umount /tmp/$DEV && rm -f /dev/$DEV /tmp/$DEV
- ;;
-esac
-} 2>&1 | logger