diff options
author | John Crispin <john@openwrt.org> | 2015-03-11 15:55:06 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-03-11 15:55:06 +0000 |
commit | abdf7886103902f58aae0c6f964169ca32287580 (patch) | |
tree | ad3ab5a5b582410d0880d0df7d888b320e0f8738 /target/linux/ar71xx/base-files | |
parent | 7dc189c5720337499566da2903c1e44643249de0 (diff) | |
download | upstream-abdf7886103902f58aae0c6f964169ca32287580.tar.gz upstream-abdf7886103902f58aae0c6f964169ca32287580.tar.bz2 upstream-abdf7886103902f58aae0c6f964169ca32287580.zip |
ar71xx: fix switched WLAN LEDs on TP-LINK Archer C5/C7
ath10k is loaded before ath9k, so the 5GHz adapter becomes phy0.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 44659
Diffstat (limited to 'target/linux/ar71xx/base-files')
-rw-r--r-- | target/linux/ar71xx/base-files/etc/uci-defaults/01_leds | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds b/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds index a83a4fc50e..d4cc617b99 100644 --- a/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds @@ -358,8 +358,6 @@ tl-wdr4300) ucidef_set_led_wlan "wlan2g" "WLAN2G" "tp-link:blue:wlan2g" "phy0tpt" ;; -archer-c5|\ -archer-c7|\ tl-wdr4900-v2) ucidef_set_led_usbdev "usb1" "USB1" "tp-link:green:usb1" "1-1" ucidef_set_led_usbdev "usb2" "USB2" "tp-link:green:usb2" "2-1" @@ -367,6 +365,14 @@ tl-wdr4900-v2) ucidef_set_led_wlan "wlan5g" "WLAN5G" "tp-link:blue:wlan5g" "phy1tpt" ;; +archer-c5|\ +archer-c7) + ucidef_set_led_usbdev "usb1" "USB1" "tp-link:green:usb1" "1-1" + ucidef_set_led_usbdev "usb2" "USB2" "tp-link:green:usb2" "2-1" + ucidef_set_led_wlan "wlan2g" "WLAN2G" "tp-link:blue:wlan2g" "phy1tpt" + ucidef_set_led_wlan "wlan5g" "WLAN5G" "tp-link:blue:wlan5g" "phy0tpt" + ;; + tl-wr741nd) ucidef_set_led_netdev "wan" "WAN" "tp-link:green:wan" "eth1" ucidef_set_led_switch "lan1" "LAN1" "tp-link:green:lan1" "switch0" "0x02" |