openwrtv3/target/linux/ar71xx/base-files/etc/uci-defaults/wrt160nl
Gabor Juhos b39eebdf1e ar71xx: add uci config for the WLAN LED on the WRT160NL
Based on a patch by Magyar Szabolcs <mszabi@freemail.hu>

SVN-Revision: 26861
2011-05-08 21:38:49 +00:00

27 lines
426 B
Bash
Executable file

#!/bin/sh
#
# Copyright (C) 2010 OpenWrt.org
#
. /lib/ar71xx.sh
board=$(ar71xx_board_name)
wrt160nl_fixtrx() {
mtd -o 32 fixtrx firmware
}
wrt160nl_setup_leds() {
uci batch <<EOF
set system.wlan_led=led
set system.wlan_led.name='WLAN'
set system.wlan_led.sysfs='wrt160nl:blue:wlan'
set system.wlan_led.trigger='phy0tpt'
commit system
EOF
}
if [ "${board}" == "wrt160nl" ]; then
wrt160nl_fixtrx
wrt160nl_setup_leds
fi