aboutsummaryrefslogtreecommitdiffstats
path: root/package/comgt/files/3g.button
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-10-27 20:29:00 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-10-27 20:29:00 +0000
commitd495281b6e84679549b0bee40b847642772a09bd (patch)
treef383eb0f8fae0af60b7efbb4a5f72ae14298aa70 /package/comgt/files/3g.button
parent2af4d0433626b5f4e69f66117402afcf2cd09816 (diff)
downloadupstream-d495281b6e84679549b0bee40b847642772a09bd.tar.gz
upstream-d495281b6e84679549b0bee40b847642772a09bd.tar.bz2
upstream-d495281b6e84679549b0bee40b847642772a09bd.zip
comgt: port 3g.sh to netifd
SVN-Revision: 28634
Diffstat (limited to 'package/comgt/files/3g.button')
-rw-r--r--package/comgt/files/3g.button36
1 files changed, 0 insertions, 36 deletions
diff --git a/package/comgt/files/3g.button b/package/comgt/files/3g.button
deleted file mode 100644
index 57f4286073..0000000000
--- a/package/comgt/files/3g.button
+++ /dev/null
@@ -1,36 +0,0 @@
-button_action() {(
- # use led for keeping track of the state
- case "$(cat /proc/diag/led/3g_green)" in
- 1)
- ifdown "$1"
- ifup wan
- ;;
- 0)
- ifdown wan
- ifup "$1"
- ;;
- esac
-)}
-
-[ "$ACTION" = "released" -a "$BUTTON" = "3g" ] && {
- HOTPLUG="$(cat /proc/sys/kernel/hotplug)"
- (echo /bin/true > /proc/sys/kernel/hotplug)
-
- include /lib/network
- scan_interfaces
- config_cb() {
- config_get TYPE "$CONFIG_SECTION" TYPE
- case "$TYPE" in
- interface)
- config_get proto "$CONFIG_SECTION" proto
- config_get button "$CONFIG_SECTION" button
- case "$button" in
- 1|on|enabled) [ "$proto" = "3g" ] && button_action "$CONFIG_SECTION";;
- esac
- ;;
- esac
- }
- config_load network
-
- (echo $HOTPLUG > /proc/sys/kernel/hotplug)
-} &