summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-26 22:45:39 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-26 22:45:39 +0000
commitfaf7173b4df3a152dbdc574751078b359c116d5b (patch)
tree446e5e5532100cf4c46d1bddfde0a688dbf1c153 /package/base-files/files/etc/hotplug.d
parenta35f8c947088b65dd1524938b59fb9b1e429807c (diff)
add the block-mount package by Daniel Dickinson (cshore), replacing existing automount functionality
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19877 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 38968933f..000000000
--- 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