2011-10-25 00:49:31 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
2012-05-29 19:39:18 +03:00
|
|
|
. /lib/functions/uci-defaults.sh
|
2011-10-25 00:49:31 +03:00
|
|
|
. /lib/ramips.sh
|
|
|
|
|
|
|
|
set_usb_led() {
|
2012-05-29 19:39:18 +03:00
|
|
|
ucidef_set_led_usbdev "usb" "USB" "$1" "1-1"
|
2011-10-25 00:49:31 +03:00
|
|
|
}
|
|
|
|
|
2011-12-23 16:27:10 +02:00
|
|
|
set_wifi_led() {
|
2012-05-29 19:39:18 +03:00
|
|
|
ucidef_set_led_netdev "wifi_led" "wifi" "$1" "wlan0"
|
2012-05-29 19:39:03 +03:00
|
|
|
}
|
|
|
|
|
2011-10-25 00:49:31 +03:00
|
|
|
board=$(ramips_board_name)
|
|
|
|
|
|
|
|
case $board in
|
2012-07-12 16:29:46 +03:00
|
|
|
3g-6200n)
|
|
|
|
set_wifi_led "edimax:amber:wlan"
|
|
|
|
set_usb_led "edimax:blue:3g"
|
|
|
|
;;
|
2012-01-24 13:48:47 +02:00
|
|
|
all0256n)
|
|
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
|
|
;;
|
2011-10-25 00:49:36 +03:00
|
|
|
bc2)
|
|
|
|
set_usb_led "bc2:blue:usb"
|
|
|
|
;;
|
2012-05-29 19:39:03 +03:00
|
|
|
dir-300-b1|\
|
|
|
|
dir-600-b1|\
|
|
|
|
dir-600-b2)
|
|
|
|
# ANDed with vlan switch port 4 led state
|
2012-05-29 19:39:18 +03:00
|
|
|
ucidef_set_led_default "wan" "WAN LED (amber)" "d-link:amber:wan" "1"
|
2012-05-29 19:39:03 +03:00
|
|
|
;;
|
2011-12-23 16:27:10 +02:00
|
|
|
esr-9753)
|
|
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
|
|
;;
|
2012-01-23 12:23:32 +02:00
|
|
|
f5d8235-v1)
|
|
|
|
set_usb_led "f5d8235-v1:blue:storage"
|
|
|
|
;;
|
|
|
|
f5d8235-v2)
|
|
|
|
set_usb_led "f5d8235v2:blue:storage"
|
|
|
|
;;
|
2011-10-25 00:49:31 +03:00
|
|
|
fonera20n)
|
2012-07-24 23:38:31 +03:00
|
|
|
set_usb_led "fonera20n:orange:usb"
|
|
|
|
set_wifi_led "fonera20n:orange:wifi"
|
2011-10-25 00:49:31 +03:00
|
|
|
;;
|
|
|
|
hw550-3g)
|
|
|
|
set_usb_led "hw550-3g:green:usb"
|
|
|
|
;;
|
|
|
|
mofi3500-3gn)
|
|
|
|
set_usb_led "mofi3500-3gn:green:usb"
|
|
|
|
;;
|
|
|
|
nw718)
|
|
|
|
set_usb_led "nw718:amber:usb"
|
|
|
|
;;
|
2012-02-19 18:44:49 +02:00
|
|
|
sl-r7205)
|
|
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
|
|
;;
|
2012-02-15 23:13:11 +02:00
|
|
|
v11st-fe)
|
|
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
|
|
;;
|
2012-04-21 15:30:40 +03:00
|
|
|
w306r-v20)
|
|
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
|
|
;;
|
2011-12-28 10:43:32 +02:00
|
|
|
w502u)
|
|
|
|
set_usb_led "alfa:blue:usb"
|
|
|
|
set_wifi_led "rt2800pci-phy0::radio"
|
|
|
|
;;
|
2012-01-23 12:23:32 +02:00
|
|
|
wcr-150gn)
|
|
|
|
set_usb_led "wcr150gn:amber:user"
|
|
|
|
;;
|
2011-10-25 00:49:31 +03:00
|
|
|
esac
|
2012-05-29 19:39:18 +03:00
|
|
|
|
|
|
|
ucidef_commit_leds
|
|
|
|
|
|
|
|
exit 0
|