2011-11-12 23:40:21 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2015-12-04 12:32:44 +00:00
|
|
|
# Copyright (C) 2011-2015 OpenWrt.org
|
2011-11-12 23:40:21 +00:00
|
|
|
# based on ar71xx
|
|
|
|
#
|
|
|
|
|
2015-12-11 15:26:06 +00:00
|
|
|
. /lib/functions/uci-defaults.sh
|
2012-12-15 02:01:00 +00:00
|
|
|
. /lib/functions/lantiq.sh
|
2011-11-12 23:40:21 +00:00
|
|
|
|
2015-12-04 12:32:44 +00:00
|
|
|
board_config_update
|
|
|
|
|
2016-01-01 21:18:21 +00:00
|
|
|
[ -n "$(lantiq_is_dt_led_chosen wifi)" ] && ucidef_set_led_wlan "wifi" "wifi" "$(lantiq_get_dt_led_chosen wifi)" "phy0tpt"
|
|
|
|
[ -n "$(lantiq_is_dt_led_chosen usb)" ] && ucidef_set_led_usbdev "usb" "usb" "$(lantiq_get_dt_led_chosen usb)" "1-1"
|
|
|
|
[ -n "$(lantiq_is_dt_led_chosen usb2)" ] && ucidef_set_led_usbdev "usb2" "usb2" "$(lantiq_get_dt_led_chosen usb2)" "2-1"
|
2016-01-01 21:18:38 +00:00
|
|
|
|
|
|
|
[ -n "$(lantiq_is_dt_led_chosen internet)" ] && {
|
|
|
|
interface="nas0"
|
|
|
|
|
|
|
|
[ -n "$(lantiq_is_dt_led_chosen dsl)" ] && {
|
|
|
|
interface="pppoe-wan"
|
|
|
|
ucidef_set_led_default "dsl" "dsl" "$(lantiq_get_dt_led_chosen dsl)" "0"
|
|
|
|
}
|
|
|
|
|
|
|
|
ucidef_set_led_netdev "internet" "internet" "$(lantiq_get_dt_led_chosen internet)" "$interface"
|
|
|
|
}
|
2011-11-12 23:40:21 +00:00
|
|
|
|
2014-07-02 16:33:11 +00:00
|
|
|
board=$(lantiq_board_name)
|
2012-03-25 08:50:30 +00:00
|
|
|
|
2012-12-15 02:01:00 +00:00
|
|
|
case "$board" in
|
2015-12-11 15:05:30 +00:00
|
|
|
BTHOMEHUBV5A)
|
|
|
|
ucidef_set_led_default "dimmed" "dimmed" "dimmed" "0"
|
|
|
|
;;
|
2015-06-05 14:11:36 +00:00
|
|
|
VGV7510KW22)
|
2016-01-01 21:18:54 +00:00
|
|
|
ucidef_set_led_wlan "wifi" "wifi" "vgv7510kw22:green:wlan" "phy0radio"
|
2015-06-05 14:11:36 +00:00
|
|
|
;;
|
2014-11-14 16:53:53 +00:00
|
|
|
VGV7519)
|
2016-01-01 21:18:54 +00:00
|
|
|
ucidef_set_led_wlan "wifi" "wifi" "vgv7519:green:wireless" "phy0radio"
|
2014-11-14 16:53:53 +00:00
|
|
|
;;
|
2015-01-17 07:07:15 +00:00
|
|
|
P2812HNUF*)
|
2016-01-01 21:18:54 +00:00
|
|
|
ucidef_set_led_wlan "wifi" "wifi" "p2812hnufx:green:wlan" "phy0radio"
|
2015-01-17 07:07:15 +00:00
|
|
|
;;
|
2015-10-05 10:28:34 +00:00
|
|
|
ARV7519RW22)
|
2016-01-01 21:18:54 +00:00
|
|
|
ucidef_set_led_netdev "lan" "lan" "arv7519rw22:green:lan" "eth0.1"
|
2015-10-05 10:28:34 +00:00
|
|
|
;;
|
2016-06-13 19:50:13 +00:00
|
|
|
FRITZ7320)
|
|
|
|
ucidef_set_led_netdev "wifi" "wifi" "fritz7320:green:wlan" "wlan0"
|
|
|
|
;;
|
2016-06-14 03:11:54 +00:00
|
|
|
ARV4525PW)
|
|
|
|
ucidef_set_led_netdev "wifi" "wifi" "arv4525pw:green:wlan" "wlan0"
|
|
|
|
;;
|
2016-06-09 14:51:39 +00:00
|
|
|
WBMR300)
|
|
|
|
ucidef_set_led_switch "lan1" "LAN1" "wbmr300:green:lan1" "switch0" "0x08"
|
|
|
|
ucidef_set_led_switch "lan2" "LAN2" "wbmr300:green:lan2" "switch0" "0x04"
|
|
|
|
ucidef_set_led_switch "wan" "WAN" "wbmr300:green:wan" "switch0" "0x10"
|
|
|
|
ucidef_set_led_switch "lan3" "LAN3" "wbmr300:green:lan3" "switch0" "0x20"
|
|
|
|
ucidef_set_led_default "router" "router" "wbmr300:green:router" "1"
|
|
|
|
;;
|
2012-12-15 02:01:00 +00:00
|
|
|
*)
|
2011-11-12 23:40:21 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2015-12-04 12:32:44 +00:00
|
|
|
board_config_flush
|
2011-11-12 23:40:21 +00:00
|
|
|
|
|
|
|
exit 0
|