mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
remove automounting script for block devices - it's causing more problems than it solves
SVN-Revision: 6937
This commit is contained in:
parent
9b62c7eb9d
commit
ab8cb8d959
@ -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
|
Loading…
Reference in New Issue
Block a user