mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 17:11:34 +02:00
2427a1a5f9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24612 3c298f89-4303-0410-b956-a3cf2f4a3e73
23 lines
372 B
Bash
Executable File
23 lines
372 B
Bash
Executable File
#!/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
|