diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-03-25 07:31:17 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-03-25 07:31:17 +0000 |
commit | 8e17bf613a5facf33fd12faf400a4ac9c6c9994d (patch) | |
tree | 51396ca539f24a33d87dcca6a96ca86d3b233305 /target | |
parent | bb543b42c4d26f124fe9af17139edf62b5ad0b2b (diff) | |
download | upstream-8e17bf613a5facf33fd12faf400a4ac9c6c9994d.tar.gz upstream-8e17bf613a5facf33fd12faf400a4ac9c6c9994d.tar.bz2 upstream-8e17bf613a5facf33fd12faf400a4ac9c6c9994d.zip |
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-wr1043nd | 22 |
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 0000000000..1ff8cb44d4 --- /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 |