From: Christian Lamparter Date: Sun, 19 May 2019 10:11:13 +0000 (+0200) Subject: apm821xx: WNDR4700: remove obsolete sd-card change detection X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fadrian.git;a=commitdiff_plain;h=2d0c0abf5d98d1f85f9d5253e0162383c33200a6 apm821xx: WNDR4700: remove obsolete sd-card change detection The SD-Card polling is now implemented by default in the fs-tools block-mount utility package. It might not be as fast as the current detection method since the polling time is 2 Seconds, but it's much less of an hack. Signed-off-by: Christian Lamparter --- diff --git a/target/linux/apm821xx/base-files/etc/rc.button/BTN_1 b/target/linux/apm821xx/base-files/etc/rc.button/BTN_1 deleted file mode 100755 index 5ecf346b53..0000000000 --- a/target/linux/apm821xx/base-files/etc/rc.button/BTN_1 +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -. /lib/functions.sh - -BOARD=$(board_name) - -if [ $BOARD == "netgear,wndr4700" ]; then - case "$ACTION" in - released) - rmmod dwc2 - ;; - pressed) - modprobe dwc2 - ;; - esac -fi - -return 0