aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-11-11 12:19:22 +0000
committerJohn Crispin <blogic@openwrt.org>2013-11-11 12:19:22 +0000
commit8a3453f142f41e08e6e2a4474a19591ca2fb5d9c (patch)
tree17e7b655feb121f76efc4bd15b216ca9e001ff66
parente60eb9f019669f82d9df987db44afcdd934432bc (diff)
downloadupstream-8a3453f142f41e08e6e2a4474a19591ca2fb5d9c.tar.gz
upstream-8a3453f142f41e08e6e2a4474a19591ca2fb5d9c.tar.bz2
upstream-8a3453f142f41e08e6e2a4474a19591ca2fb5d9c.zip
base-files: update rfkill script to work with slider buttons
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38729 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-xpackage/base-files/files/etc/rc.button/rfkill11
1 files changed, 9 insertions, 2 deletions
diff --git a/package/base-files/files/etc/rc.button/rfkill b/package/base-files/files/etc/rc.button/rfkill
index 7a8cfe91b9..d7f4d3368a 100755
--- a/package/base-files/files/etc/rc.button/rfkill
+++ b/package/base-files/files/etc/rc.button/rfkill
@@ -1,6 +1,6 @@
#!/bin/sh
-[ "${ACTION}" = "released" ] || exit 0
+[ "${ACTION}" = "released" -o -n "{TYPE}" ] || exit 0
. /lib/functions.sh
@@ -17,7 +17,14 @@ wifi_rfkill_check() {
}
config_load wireless
-config_foreach wifi_rfkill_check wifi-device
+case "${TYPE}" in
+"switch")
+ [ "${ACTION}" = "released" ] && rfkill_state=1
+ ;;
+*)
+ config_foreach wifi_rfkill_check wifi-device
+ ;;
+esac
config_foreach wifi_rfkill_set wifi-device
uci commit wireless
wifi up