1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-07 16:37:52 +03:00
openwrt-xburst/package/base-files/files/etc/hotplug.d/block/10-mount

21 lines
347 B
Plaintext
Raw Normal View History

#!/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