From 2d0c0abf5d98d1f85f9d5253e0162383c33200a6 Mon Sep 17 00:00:00 2001 From: Christian Lamparter Date: Sun, 19 May 2019 12:11:13 +0200 Subject: [PATCH] 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 --- .../apm821xx/base-files/etc/rc.button/BTN_1 | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 target/linux/apm821xx/base-files/etc/rc.button/BTN_1 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