2
0
forked from Ivasoft/openwrt

ar71xx: add wlan led for the TL-WR941ND

SVN-Revision: 24612
This commit is contained in:
Gabor Juhos
2010-12-15 19:55:50 +00:00
parent e421d2575f
commit a2a5598c00
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#!/bin/sh
#
# Copyright (C) 2010 OpenWrt.org
#
. /lib/ar71xx.sh
board=$(ar71xx_board_name)
tl_wr941nd_set_wlan_led() {
uci batch <<EOF
set system.wlan_led=led
set system.wlan_led.name='WLAN'
set system.wlan_led.sysfs='tl-wr941nd:green:wlan'
set system.wlan_led.trigger='phy0tpt'
commit system
EOF
}
if [ "${board}" == "tl-wr941nd" ]; then
tl_wr941nd_set_wlan_led
fi