diff options
author | John Crispin <blogic@openwrt.org> | 2015-11-21 21:24:11 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-11-21 21:24:11 +0000 |
commit | 0e2e5556fa52a250d0acc374c7097a3be518a383 (patch) | |
tree | 9c2cde2d59e2566af43d0fe6be09619e9b684488 /target/linux | |
parent | 96df90b796c4eda163223c53e4358559350e6522 (diff) | |
download | master-187ad058-0e2e5556fa52a250d0acc374c7097a3be518a383.tar.gz master-187ad058-0e2e5556fa52a250d0acc374c7097a3be518a383.tar.bz2 master-187ad058-0e2e5556fa52a250d0acc374c7097a3be518a383.zip |
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).
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47553 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 6e903fa2f4..af2df8e068 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -123,7 +123,7 @@ tplink_board_detect() { "3C0002"*) model="MINIBOX_V1" ;; - "070300"*) + "070301"*) model="TP-Link TL-WR703N" ;; "071000"*) |