diff options
Diffstat (limited to 'target/device/KwikByte/kb9202/target_skeleton/sbin')
-rwxr-xr-x | target/device/KwikByte/kb9202/target_skeleton/sbin/automount.script | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/target/device/KwikByte/kb9202/target_skeleton/sbin/automount.script b/target/device/KwikByte/kb9202/target_skeleton/sbin/automount.script new file mode 100755 index 000000000..facce6073 --- /dev/null +++ b/target/device/KwikByte/kb9202/target_skeleton/sbin/automount.script @@ -0,0 +1,21 @@ +#! /bin/sh + +if [ x$ACTION = "x" ] ; then + echo "$0: should be called by mdev" + exit -1 +fi + +if [ $ACTION = "remove" ] ; then + umount -f /dev/$MDEV + rmdir /disk/$MDEV + exit 0 +fi + +if [ $ACTION = "add" ] ; then + mkdir -p /disk/$MDEV + mount -o sync /dev/$MDEV /disk/$MDEV + exit 0 +fi + +echo "$0: $ACTION=ACTION not recognized" > /dev/console +env > /dev/console |