update automount scripit

This commit is contained in:
coolsnowwolf 2017-09-12 21:48:48 +08:00
parent 66b6e68686
commit b09a6db9da
2 changed files with 2 additions and 28 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=automount
PKG_VERSION:=1
PKG_RELEASE:=13
PKG_RELEASE:=14
PKG_ARCH:=all
include $(INCLUDE_DIR)/package.mk
@ -31,7 +31,7 @@ endef
define Package/automount/install
$(INSTALL_DIR) $(1)/etc/hotplug.d/block
$(INSTALL_BIN) ./files/10-automount $(1)/etc/hotplug.d/block/10-automount
$(INSTALL_BIN) ./files/15-automount $(1)/etc/hotplug.d/block/15-automount
endef
$(eval $(call BuildPackage,automount))

View File

@ -1,26 +0,0 @@
#!/bin/sh
# Copyright (C) 2015 OpenWrt.org
# 0 yes blockdevice handles this - 1 no it is not there
blkdev=`dirname $DEVPATH`
basename=`basename $blkdev`
device=`basename $DEVPATH`
skip=`block info | sed 's/\(.*\): .*/\1/' | grep -q $device ; echo $?`
path=$DEVPATH
if [ $basename != "block" ] && [ -z "${device##sd*}" ] && [ $skip -eq 1 ]; then
mntpnt=$device
case "$ACTION" in
add)
mkdir -p /mnt/$mntpnt
# Try to be gentle on solid state devices
mount -o rw,noatime,discard /dev/$device /mnt/$mntpnt
;;
remove)
# Once the device is removed, the /dev entry disappear. We need mountpoint
mountpoint=`mount |grep /dev/$device | sed 's/.* on \(.*\) type.*/\1/'`
umount -l $mountpoint
;;
esac
fi