diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-12-15 19:55:50 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-12-15 19:55:50 +0000 |
commit | a2a5598c00c75f4edc43397502c5d533c88338eb (patch) | |
tree | a731e65c13e318255628956e92c37fe991b4664e /target/linux/ar71xx/base-files | |
parent | e421d2575f5ba29ac2e9ba52d13d0803125d7df8 (diff) | |
download | upstream-a2a5598c00c75f4edc43397502c5d533c88338eb.tar.gz upstream-a2a5598c00c75f4edc43397502c5d533c88338eb.tar.bz2 upstream-a2a5598c00c75f4edc43397502c5d533c88338eb.zip |
ar71xx: add wlan led for the TL-WR941ND
SVN-Revision: 24612
Diffstat (limited to 'target/linux/ar71xx/base-files')
-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 |