mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 09:21:33 +02:00
de74662151
Make the WiFi LEDs blink for activity on the WNDR3700, matching the stock firmware and user expectations. The green 2.4GHz and blue 5GHz LEDs will illuminate with the radio on, and will blink to indicate transmission and reception. Signed-off-by: Mark Mentovai <mark@moxienet.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23877 3c298f89-4303-0410-b956-a3cf2f4a3e73
35 lines
893 B
Bash
Executable File
35 lines
893 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
board=$(ar71xx_board_name)
|
|
|
|
wndr3700_set_wan_wifi_leds() {
|
|
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'
|
|
set system.wifi_led_2ghz='led'
|
|
set system.wifi_led_2ghz.sysfs='ath9k-phy0::radio'
|
|
set system.wifi_led_2ghz.name='2.4GHz WiFi LED (green)'
|
|
set system.wifi_led_2ghz.trigger='netdev'
|
|
set system.wifi_led_2ghz.dev='wlan0'
|
|
set system.wifi_led_2ghz.mode='link tx rx'
|
|
set system.wifi_led_5ghz='led'
|
|
set system.wifi_led_5ghz.sysfs='ath9k-phy1::radio'
|
|
set system.wifi_led_5ghz.name='5GHz WiFi LED (blue)'
|
|
set system.wifi_led_5ghz.trigger='netdev'
|
|
set system.wifi_led_5ghz.dev='wlan1'
|
|
set system.wifi_led_5ghz.mode='link tx rx'
|
|
commit system
|
|
EOF
|
|
}
|
|
|
|
if [ "${board}" == "wndr3700" ]; then
|
|
wndr3700_set_wan_wifi_leds
|
|
fi
|