summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-02-26 22:45:39 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-02-26 22:45:39 +0000
commitbfeb96126dedec0133b8fc5138225394a3ab3af3 (patch)
tree15fc6051ae24767ae1d830fb96f8df8b7064e2a8 /package/base-files/files/etc/hotplug.d
parent87298f0de2bf3cfb615c0e6cdeefee58b0534707 (diff)
downloadmaster-31e0f0ae-bfeb96126dedec0133b8fc5138225394a3ab3af3.tar.gz
master-31e0f0ae-bfeb96126dedec0133b8fc5138225394a3ab3af3.tar.bz2
master-31e0f0ae-bfeb96126dedec0133b8fc5138225394a3ab3af3.zip
add the block-mount package by Daniel Dickinson (cshore), replacing existing automount functionality
SVN-Revision: 19877
Diffstat (limited to 'package/base-files/files/etc/hotplug.d')
-rw-r--r--package/base-files/files/etc/hotplug.d/block/10-mount20
1 files changed, 0 insertions, 20 deletions
diff --git a/package/base-files/files/etc/hotplug.d/block/10-mount b/package/base-files/files/etc/hotplug.d/block/10-mount
deleted file mode 100644
index 38968933fa..0000000000
--- a/package/base-files/files/etc/hotplug.d/block/10-mount
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2009-2010 OpenWrt.org
-
-blkdev=`dirname $DEVPATH`
-if [ `basename $blkdev` != "block" ]; then
-
- device=`basename $DEVPATH`
- case "$ACTION" in
- add)
- swapon /dev/$device >/dev/null 2>/dev/null || (
- mkdir -p /mnt/$device
- mount /dev/$device /mnt/$device
- )
- ;;
- remove)
- umount /dev/$device
- ;;
- esac
-
-fi