diff --git a/package/lean/automount/Makefile b/package/lean/automount/Makefile index 2a674f2c0..627f21326 100644 --- a/package/lean/automount/Makefile +++ b/package/lean/automount/Makefile @@ -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)) diff --git a/package/lean/automount/files/10-automount b/package/lean/automount/files/10-automount deleted file mode 100755 index 1948d75a0..000000000 --- a/package/lean/automount/files/10-automount +++ /dev/null @@ -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 \ No newline at end of file