20 lines
287 B
Text
20 lines
287 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Copyright (C) 2009 OpenWrt.org
|
||
|
|
||
|
blkdev=`dirname $DEVPATH`
|
||
|
if [ `basename $blkdev` != "block" ]; then
|
||
|
|
||
|
device=`basename $DEVPATH`
|
||
|
case "$ACTION" in
|
||
|
add)
|
||
|
mkdir -p /mnt/$device
|
||
|
mount /dev/$device /mnt/$device
|
||
|
;;
|
||
|
remove)
|
||
|
umount /dev/$device
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
fi
|