summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/hotplug.d/block/10-mount
blob: 38968933fa58df73aa84ccc7a279a7292f4036db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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