mirror of https://github.com/hak5/openwrt.git
23 lines
373 B
Bash
23 lines
373 B
Bash
#!/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
|