aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/base-files/etc/board.d/01_leds
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2016-01-01 21:18:38 +0000
committerJohn Crispin <john@openwrt.org>2016-01-01 21:18:38 +0000
commitebc71a4d1646eb88cf71e301c085a2dfa5d1efcf (patch)
tree92e43b7fbf1f14f78de7ed14804f761fc192b673 /target/linux/lantiq/base-files/etc/board.d/01_leds
parenta3c3b2a9a800b9ad30e1aea1b3296fd5be20bd8f (diff)
downloadupstream-ebc71a4d1646eb88cf71e301c085a2dfa5d1efcf.tar.gz
upstream-ebc71a4d1646eb88cf71e301c085a2dfa5d1efcf.tar.bz2
upstream-ebc71a4d1646eb88cf71e301c085a2dfa5d1efcf.zip
lantiq: use dsl led defined in DTS
dsl_control (dsl_notify.sh) is the only process which is aware of the state of the atm/ptm interface. Use the dsl led exclusive for the dsl line state. On boards which don't have a distinct internet and a dsl led, let the netdev status of the atm interface trigger the shared led. Triggering the shared led according to the status of the ppp interface isn't suitable, since the led would be switched of if the ppp connection goes down, but the line is still in sync. Signed-off-by: Mathias Kresin <openwrt@kresin.me> SVN-Revision: 48040
Diffstat (limited to 'target/linux/lantiq/base-files/etc/board.d/01_leds')
-rwxr-xr-xtarget/linux/lantiq/base-files/etc/board.d/01_leds19
1 files changed, 11 insertions, 8 deletions
diff --git a/target/linux/lantiq/base-files/etc/board.d/01_leds b/target/linux/lantiq/base-files/etc/board.d/01_leds
index 7a25b6d36f..a95c72c3a9 100755
--- a/target/linux/lantiq/base-files/etc/board.d/01_leds
+++ b/target/linux/lantiq/base-files/etc/board.d/01_leds
@@ -12,14 +12,21 @@ board_config_update
[ -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"
-[ -n "$(lantiq_is_dt_led_chosen internet)" ] && ucidef_set_led_netdev "internet" "internet" "$(lantiq_get_dt_led_chosen internet)" "pppoe-wan"
+
+[ -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"
+}
board=$(lantiq_board_name)
case "$board" in
-VG3503J)
- ucidef_set_led_netdev "vdsl" "vdsl" "bt:green:dsl" "ptm0"
- ;;
BTHOMEHUBV2B)
ucidef_set_led_default "power" "power" "soc:blue:power" "1"
;;
@@ -34,19 +41,16 @@ VGV7510KW22)
ucidef_set_led_default "power" "power" "power" "1"
ucidef_set_led_default "power2" "power2" "power2" "0"
ucidef_set_led_wlan "wifi" "wifi" "wifi" "phy0radio"
- ucidef_set_led_netdev "dsl" "dsl" "dsl" "nas0"
;;
VGV7519)
ucidef_set_led_default "power" "power" "power" "0"
ucidef_set_led_default "power2" "power2" "power2" "1"
ucidef_set_led_wlan "wifi" "wifi" "wireless_yellow" "phy0radio"
- ucidef_set_led_netdev "broadband_yellow" "broadband_yellow" "broadband_yellow" "nas0"
;;
P2812HNUF*)
ucidef_set_led_default "power" "power" "power" "0"
ucidef_set_led_default "power2" "power2" "power2" "1"
ucidef_set_led_wlan "wifi" "wifi" "wireless_green" "phy0radio"
- ucidef_set_led_netdev "dsl" "dsl" "dsl" "nas0"
;;
ARV7519RW22)
ucidef_set_led_default "power" "power" "power" "1"
@@ -55,7 +59,6 @@ ARV7519RW22)
ARV8539PW22)
ucidef_set_led_default "power" "power" "soc:green:power" "1"
ucidef_set_led_default "power2" "power2" "soc:red:power" "0"
- ucidef_set_led_netdev "dsl" "dsl" "soc:green:dsl" "nas0"
;;
*)
;;