2015-11-19 23:04:59 +00:00
|
|
|
From: Matthias Schiffer <mschiffer@universe-factory.net>
|
|
|
|
Date: Thu, 19 Nov 2015 23:29:17 +0100
|
|
|
|
Subject: ar71xx: fix AR71XX_MODEL on TP-Link TL-WR703N
|
|
|
|
|
|
|
|
The hwid check was wrong, causing the AR71XX_MODEL value to end with a
|
|
|
|
space (as $hwver was unset).
|
|
|
|
|
|
|
|
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh
|
2016-02-08 17:38:36 +00:00
|
|
|
index 46af69a..d0abf42 100755
|
2015-11-19 23:04:59 +00:00
|
|
|
--- a/target/linux/ar71xx/base-files/lib/ar71xx.sh
|
|
|
|
+++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh
|
2016-02-08 17:38:36 +00:00
|
|
|
@@ -123,7 +123,7 @@ tplink_board_detect() {
|
2015-11-19 23:04:59 +00:00
|
|
|
"3C0002"*)
|
|
|
|
model="MINIBOX_V1"
|
|
|
|
;;
|
|
|
|
- "070300"*)
|
|
|
|
+ "070301"*)
|
|
|
|
model="TP-Link TL-WR703N"
|
|
|
|
;;
|
|
|
|
"071000"*)
|