diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-11-11 08:04:47 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-11-11 08:04:47 +0000 |
commit | d4cc7aac4b2113cc9a757cc1e9a5c6390005329e (patch) | |
tree | 40df385e9a54df069ea89cf2782de1e868624869 /target/linux/ar71xx/base-files/lib/ar71xx.sh | |
parent | 79163c8919d344bc1fa0f84c9883fd02148c4c1c (diff) | |
download | upstream-d4cc7aac4b2113cc9a757cc1e9a5c6390005329e.tar.gz upstream-d4cc7aac4b2113cc9a757cc1e9a5c6390005329e.tar.bz2 upstream-d4cc7aac4b2113cc9a757cc1e9a5c6390005329e.zip |
ar71xx: add user space support for the TL-WA750RE/WA850RE Range extender
Patch to add user space support for the TL-WA750RE/WA850RE range extender
Signed-off-by: Martijn Zilverschoon <thefriedzombie@gmail.com>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 38718
Diffstat (limited to 'target/linux/ar71xx/base-files/lib/ar71xx.sh')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index e1cedf6f06..cde8856284 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -103,6 +103,9 @@ tplink_board_detect() { "074300"*) model="TP-Link TL-WR743N/ND" ;; + "075000"*) + model="TP-Link TL-WA750RE" + ;; "080100"*) model="TP-Link TL-WA801N/ND" ;; @@ -115,6 +118,9 @@ tplink_board_detect() { "084200"*) model="TP-Link TL-WR842N/ND" ;; + "085000"*) + model="TP-Link TL-WA850RE" + ;; "090100"*) model="TP-Link TL-WA901N/ND" ;; @@ -444,9 +450,15 @@ ar71xx_board_detect() { *"TL-MR3420 v2") name="tl-mr3420-v2" ;; + *TL-WA750RE) + name="tl-wa750re" + ;; *TL-WA7510N) name="tl-wa7510n" ;; + *TL-WA850RE) + name="tl-wa850re" + ;; *TL-WA901ND) name="tl-wa901nd" ;; |