summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-25 07:31:17 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-25 07:31:17 +0000
commit4abdb0bd87027acdae476a8c04806bdaf8bf40ae (patch)
tree51396ca539f24a33d87dcca6a96ca86d3b233305 /target
parentb9e67435feea07f0da844efda6c8b312516b17ad (diff)
ar71xx: Add basic WLAN LED control to TL-WR1043ND
* thanks to KillaB * closes #6834 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20415 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd22
1 files changed, 22 insertions, 0 deletions
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
index 000000000..1ff8cb44d
--- /dev/null
+++ b/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr1043nd
@@ -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