ar71xx: add uci configuration for the WAN LED on the WNDR3700
Based on a patch by Scott Dudley <spmsink@hotmail.com> SVN-Revision: 19746
This commit is contained in:
parent
a71b06ad65
commit
47990f61fb
1 changed files with 22 additions and 0 deletions
22
target/linux/ar71xx/base-files/etc/uci-defaults/wndr3700
Executable file
22
target/linux/ar71xx/base-files/etc/uci-defaults/wndr3700
Executable file
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2010 OpenWrt.org
|
||||
#
|
||||
|
||||
. /lib/ar71xx.sh
|
||||
|
||||
board=$(ar71xx_board_name)
|
||||
|
||||
wndr3700_set_wan_led() {
|
||||
uci batch <<EOF
|
||||
set system.wan_led=led
|
||||
set system.wan_led.sysfs='wndr3700:green:wan'
|
||||
set system.wan_led.name='WAN LED (green)'
|
||||
set system.wan_led.default='0'
|
||||
commit system
|
||||
EOF
|
||||
}
|
||||
|
||||
if [ "${board}" == "wndr3700" ]; then
|
||||
wndr3700_set_wan_led
|
||||
fi
|
Loading…
Reference in a new issue