1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 04:23:16 +03:00
openwrt-xburst/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr941nd
juhosg 46393cef66 ar71xx: unify LED names on TP-Link boards
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28701 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-11-01 11:20:44 +00:00

23 lines
369 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='tp-link:green:wlan'
set system.wlan_led.trigger='phy0tpt'
commit system
EOF
}
if [ "${board}" == "tl-wr941nd" ]; then
tl_wr941nd_set_wlan_led
fi