diff options
author | Julius Schulz-Zander <julius@inet.tu-berlin.de> | 2016-10-21 11:47:15 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-10-26 12:37:45 +0200 |
commit | a71a8955f20e3c3ac13323072a70362f3c9d80fd (patch) | |
tree | 4c2b7dc4a48bea3a2716c5ec4e2b5ed58e7eac4d /target/linux/ar71xx/base-files/lib/ar71xx.sh | |
parent | da1b33fc4dcab8453b70b4ee87e7b46a34c99acb (diff) | |
download | mtk-20170518-a71a8955f20e3c3ac13323072a70362f3c9d80fd.zip mtk-20170518-a71a8955f20e3c3ac13323072a70362f3c9d80fd.tar.gz mtk-20170518-a71a8955f20e3c3ac13323072a70362f3c9d80fd.tar.bz2 |
ar71xx: add support for TP-Link WR802N v1
This patch adds support solely for version 1 of the TP-Link WR802N.
It is based on Rick Pannen's patch posted on the OpenWrt devel list.
Signed-off-by: Julius Schulz-Zander <julius@inet.tu-berlin.de>
Diffstat (limited to 'target/linux/ar71xx/base-files/lib/ar71xx.sh')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 85f5bf2..fb375a5 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -217,6 +217,9 @@ tplink_board_detect() { "080100"*) model="TP-Link TL-WA801N/ND" ;; + "080200"*) + model="TP-Link TL-WR802N" + ;; "083000"*) model="TP-Link TL-WA830RE" @@ -949,6 +952,9 @@ ar71xx_board_detect() { *"TL-WA801ND v3") name="tl-wa801nd-v3" ;; + *"TL-WR802N v1") + name="tl-wr802n-v1" + ;; *TL-WA901ND) name="tl-wa901nd" ;; |