aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-11-11 12:19:15 +0000
committerJohn Crispin <john@openwrt.org>2013-11-11 12:19:15 +0000
commit30fafd0617280d323b707bf541d2637e6dd8d9c3 (patch)
treed9317d53d09ae9d21e500fc2cd17c78bb062bb48 /target
parent243179f9f60d30de287e3c77931b15a82de3b536 (diff)
downloadupstream-30fafd0617280d323b707bf541d2637e6dd8d9c3.tar.gz
upstream-30fafd0617280d323b707bf541d2637e6dd8d9c3.tar.bz2
upstream-30fafd0617280d323b707bf541d2637e6dd8d9c3.zip
lantiq: remove old hotplug handler
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 38727
Diffstat (limited to 'target')
-rw-r--r--target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh53
1 files changed, 0 insertions, 53 deletions
diff --git a/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh b/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh
deleted file mode 100644
index 4b305fbdfb..0000000000
--- a/target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-
-[ "${ACTION}" = "released" ] || exit 0
-
-. /lib/functions.sh
-
-logger "$BUTTON pressed for $SEEN seconds"
-
-local rfkill_state=0
-
-wifi_rfkill_set() {
- uci set wireless.$1.disabled=$rfkill_state
-}
-
-wifi_rfkill_check() {
- local disabled
- config_get disabled $1 disabled
- [ "$disabled" = "1" ] || rfkill_state=1
-}
-
-case "${BUTTON}" in
- reset)
- if [ "$SEEN" -lt 1 ]
- then
- echo "REBOOT" > /dev/console
- sync
- reboot
- elif [ "$SEEN" -gt 5 ]
- then
- echo "FACTORY RESET" > /dev/console
- firstboot && reboot &
- fi
- ;;
-
- wps)
- for dir in /var/run/hostapd-*; do
- [ -d "$dir" ] || continue
- hostapd_cli -p "$dir" wps_pbc
- done
- ;;
-
- rfkill)
- config_load wireless
- config_foreach wifi_rfkill_check wifi-device
- config_foreach wifi_rfkill_set wifi-device
- uci commit wireless
- wifi up
- ;;
-
- *)
- logger "unknown button ${BUTTON}"
- ;;
-esac