diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-12 09:49:09 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-12 09:49:09 +0000 |
commit | 4530e52764e0b2206f4bb380c1a7e1bb28621970 (patch) | |
tree | 06406a3cbf3a46db06ef0e1ec19d791b01f5f5b0 /package/base-files/files/etc | |
parent | 3049bd132af7162a179c8d29f3fc068db8e84f38 (diff) |
remove automounting script for block devices - it's causing more problems than it solves
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6937 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/etc')
-rwxr-xr-x | package/base-files/files/etc/hotplug.d/block/01-mount | 25 |
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 |