1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-07 22:45:27 +03:00

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
This commit is contained in:
juhosg 2010-03-25 07:31:17 +00:00
parent b9e67435fe
commit 4abdb0bd87

View File

@ -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