mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 17:11:34 +02:00
a1c5a3da98
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26860 3c298f89-4303-0410-b956-a3cf2f4a3e73
23 lines
393 B
Bash
Executable File
23 lines
393 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
board=$(ar71xx_board_name)
|
|
|
|
nbg460n_550n_550nh_set_wlan_led() {
|
|
uci batch <<EOF
|
|
set system.wlan_led=led
|
|
set system.wlan_led.name='WLAN'
|
|
set system.wlan_led.sysfs='nbg460n:green:wlan'
|
|
set system.wlan_led.trigger='phy0tpt'
|
|
commit system
|
|
EOF
|
|
}
|
|
|
|
if [ "${board}" == "nbg460n_550n_550nh" ]; then
|
|
nbg460n_550n_550nh_set_wlan_led
|
|
fi
|