Skip to content

Commit

Permalink
ar71xx: fix TP-Link Archer C7 v5 switch LEDs
Browse files Browse the repository at this point in the history
Signed-off-by: Rinki Kumari <rinki13@gmail.com>
  • Loading branch information
Rinki13 authored and neocturne committed Nov 17, 2018
1 parent 251c350 commit dd02a19
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions target/linux/ar71xx/base-files/etc/board.d/01_leds
Expand Up @@ -144,16 +144,28 @@ archer-c60-v2)
;;
esac
;;
archer-c7-v4)
archer-c7-v4|\
archer-c7-v5)
ucidef_set_led_wlan "wlan" "WLAN" "$board:green:wlan2g" "phy1tpt"
ucidef_set_led_wlan "wlan5g" "WLAN5G" "$board:green:wlan5g" "phy0tpt"
ucidef_set_led_switch "wan" "WAN" "$board:green:wan" "switch0" "0x02"
ucidef_set_led_switch "lan1" "LAN1" "$board:green:lan4" "switch0" "0x04"
ucidef_set_led_switch "lan2" "LAN2" "$board:green:lan3" "switch0" "0x08"
ucidef_set_led_switch "lan3" "LAN3" "$board:green:lan2" "switch0" "0x10"
ucidef_set_led_switch "lan4" "LAN4" "$board:green:lan1" "switch0" "0x20"
ucidef_set_led_usbdev "usb1" "USB1" "$board:green:usb1" "1-1"
ucidef_set_led_usbdev "usb2" "USB2" "$board:green:usb2" "2-1"

case "$board" in
archer-c7-v4)
ucidef_set_led_usbdev "usb1" "USB1" "$board:green:usb1" "1-1"
ucidef_set_led_usbdev "usb2" "USB2" "$board:green:usb2" "2-1"
;;
esac

case "$board" in
archer-c7-v5)
ucidef_set_led_usbdev "usb" "USB" "$board:green:usb" "1-1"
;;
esac
;;
arduino-yun)
ucidef_set_led_wlan "wlan" "WLAN" "arduino:blue:wlan" "phy0tpt"
Expand Down

0 comments on commit dd02a19

Please sign in to comment.