diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-15 19:55:50 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-15 19:55:50 +0000 |
commit | 2427a1a5f9baffc8a4faf578dbdb5b618e23ed53 (patch) | |
tree | b725c0e0b133f4cf1367c624fd80ccbc4a6f1256 /target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr941nd | |
parent | 786449614f4a99cf6ff2f6d7ad2a359c1ed3fe58 (diff) |
ar71xx: add wlan led for the TL-WR941ND
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24612 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr941nd')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr941nd | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr941nd b/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr941nd new file mode 100755 index 0000000000..2033add37d --- /dev/null +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/tl-wr941nd @@ -0,0 +1,22 @@ +#!/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 |