ar71xx: add uci configuration for the WAN LED on the WNDR3700
authorGabor Juhos <juhosg@openwrt.org>
Fri, 19 Feb 2010 11:52:25 +0000 (11:52 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Fri, 19 Feb 2010 11:52:25 +0000 (11:52 +0000)
Based on a patch by Scott Dudley <spmsink@hotmail.com>

SVN-Revision: 19746

target/linux/ar71xx/base-files/etc/uci-defaults/wndr3700 [new file with mode: 0755]

diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/wndr3700 b/target/linux/ar71xx/base-files/etc/uci-defaults/wndr3700
new file mode 100755 (executable)
index 0000000..91f282b
--- /dev/null
@@ -0,0 +1,22 @@
+#!/bin/sh
+#
+# Copyright (C) 2010 OpenWrt.org
+#
+
+. /lib/ar71xx.sh
+
+board=$(ar71xx_board_name)
+
+wndr3700_set_wan_led() {
+       uci batch <<EOF
+set system.wan_led=led
+set system.wan_led.sysfs='wndr3700:green:wan'
+set system.wan_led.name='WAN LED (green)'
+set system.wan_led.default='0'
+commit system
+EOF
+}
+
+if [ "${board}" == "wndr3700" ]; then
+       wndr3700_set_wan_led
+fi