ar71xx: Add basic WLAN LED control to TL-WR1043ND
authorGabor Juhos <juhosg@openwrt.org>
Thu, 25 Mar 2010 07:31:17 +0000 (07:31 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Thu, 25 Mar 2010 07:31:17 +0000 (07:31 +0000)
  * thanks to KillaB
  * closes #6834

SVN-Revision: 20415

target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd [new file with mode: 0644]

diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd b/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd
new file mode 100644 (file)
index 0000000..1ff8cb4
--- /dev/null
@@ -0,0 +1,22 @@
+#!/bin/sh
+#
+# Copyright (C) 2010 OpenWrt.org
+#
+
+. /lib/ar71xx.sh
+
+board=$(ar71xx_board_name)
+
+tlwr1043nd_set_wlan_led() {
+       uci batch <<EOF
+set system.wlan_led=led
+set system.wlan_led.name='WLAN'
+set system.wlan_led.sysfs='tl-wr1043nd:green:wlan'
+set system.wlan_led.trigger='phy0rx'
+commit system
+EOF
+}
+
+if [ "${board}" == "tl-wr1043nd" ]; then
+       tlwr1043nd_set_wlan_led
+fi