summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d/block/01-mount
blob: 5ed3ef060b5ad38e32794a835b2bd839a8e8d590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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} ] && {
		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