[source] ar71xx: fix LEDs and sysupgrade support for TL-WA801ND v3

LEDE Commits lede-commits at lists.infradead.org
Tue Dec 6 10:34:23 PST 2016


neoraider pushed a commit to source.git, branch master:
https://git.lede-project.org/9c5af2489a272b98930847c2dcdec207187a5baa

commit 9c5af2489a272b98930847c2dcdec207187a5baa
Author: Matthias Schiffer <mschiffer at universe-factory.net>
AuthorDate: Tue Dec 6 16:18:49 2016 +0100

    ar71xx: fix LEDs and sysupgrade support for TL-WA801ND v3
    
    Signed-off-by: Matthias Schiffer <mschiffer at universe-factory.net>
---
 target/linux/ar71xx/base-files/etc/board.d/01_leds             | 4 ++++
 target/linux/ar71xx/base-files/etc/diag.sh                     | 1 +
 target/linux/ar71xx/base-files/lib/upgrade/platform.sh         | 1 +
 target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wa801nd-v3.c | 6 +++---
 4 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/target/linux/ar71xx/base-files/etc/board.d/01_leds b/target/linux/ar71xx/base-files/etc/board.d/01_leds
index 383695c..a93ea1d 100755
--- a/target/linux/ar71xx/base-files/etc/board.d/01_leds
+++ b/target/linux/ar71xx/base-files/etc/board.d/01_leds
@@ -525,6 +525,10 @@ tl-wa750re)
 	ucidef_set_led_rssi "rssimediumhigh" "RSSIMEDIUMHIGH" "tp-link:orange:signal4" "wlan0" "60" "100" "-59" "13"
 	ucidef_set_led_rssi "rssihigh" "RSSIHIGH" "tp-link:orange:signal5" "wlan0" "80" "100" "-79" "13"
 	;;
+tl-wa801nd-v3)
+	ucidef_set_led_netdev "lan" "LAN" "tp-link:green:lan" "eth1"
+	ucidef_set_led_wlan "wlan" "WLAN" "tp-link:green:wlan" "phy0tpt"
+	;;
 tl-wa850re)
 	ucidef_set_led_netdev "lan" "LAN" "tp-link:blue:lan" "eth0"
 	ucidef_set_led_wlan "wlan" "WLAN" "tp-link:blue:wlan" "phy0tpt"
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh
index b18a096..9b9aea8 100644
--- a/target/linux/ar71xx/base-files/etc/diag.sh
+++ b/target/linux/ar71xx/base-files/etc/diag.sh
@@ -348,6 +348,7 @@ get_status_led() {
 	tl-wr1043nd-v2|\
 	tl-wr741nd|\
 	tl-wr741nd-v4|\
+	tl-wa801nd-v3|\
 	tl-wr841n-v1|\
 	tl-wr841n-v7|\
 	tl-wr841n-v8|\
diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
index 887a0f0..5f4375d 100755
--- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
+++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
@@ -363,6 +363,7 @@ platform_check_image() {
 	tl-wa750re|\
 	tl-wa7510n|\
 	tl-wa801nd-v2|\
+	tl-wa801nd-v3|\
 	tl-wa830re-v2|\
 	tl-wa850re|\
 	tl-wa860re|\
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wa801nd-v3.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wa801nd-v3.c
index 39cdb10..054c14e 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wa801nd-v3.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wa801nd-v3.c
@@ -24,7 +24,7 @@
 #include "machtypes.h"
 
 #define TL_WA801NDV3_GPIO_LED_WLAN	12
-#define TL_WA801NDV3_GPIO_LED_QSS	13
+#define TL_WA801NDV3_GPIO_LED_SYSTEM	13
 #define TL_WA801NDV3_GPIO_LED_SECURITY_RED 11
 #define TL_WA801NDV3_GPIO_LED_SECURITY_GREEN 15
 #define TL_WA801NDV3_GPIO_LED_LAN 3
@@ -46,8 +46,8 @@ static struct flash_platform_data tl_wa801n_v3_flash_data = {
 
 static struct gpio_led tl_wa801n_v3_leds_gpio[] __initdata = {
   {
-		.name		= "tp-link:green:qss",
-		.gpio		= TL_WA801NDV3_GPIO_LED_QSS,
+		.name		= "tp-link:green:system",
+		.gpio		= TL_WA801NDV3_GPIO_LED_SYSTEM,
 		.active_low	= 1,
 	}, {
 		.name		= "tp-link:green:lan",



More information about the lede-commits mailing list