From 14edb110912669315c0be0588cfb77edc0f73f3f Mon Sep 17 00:00:00 2001 From: John Crispin Date: Mon, 11 Nov 2013 12:19:15 +0000 Subject: lantiq: remove old hotplug handler Signed-off-by: John Crispin git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38727 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../base-files/etc/hotplug.d/button/10-generic.sh | 53 ---------------------- 1 file changed, 53 deletions(-) delete mode 100644 target/linux/lantiq/base-files/etc/hotplug.d/button/10-generic.sh (limited to 'target') 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 -- cgit v1.2.3