diff options
author | John Crispin <blogic@openwrt.org> | 2016-04-01 07:11:23 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2016-04-01 07:11:23 +0000 |
commit | 14e133d4ad6ff4ad8e8cb73c5783c573d880793a (patch) | |
tree | c30f71d68248e3b21660f10d5f4dfa50894658c8 | |
parent | e0707bb7a95d987e72601e2433e2db7b6cb73f94 (diff) | |
download | master-187ad058-14e133d4ad6ff4ad8e8cb73c5783c573d880793a.tar.gz master-187ad058-14e133d4ad6ff4ad8e8cb73c5783c573d880793a.tar.bz2 master-187ad058-14e133d4ad6ff4ad8e8cb73c5783c573d880793a.zip |
ar71xx: Add TL-WR841N/ND v11 support
This patch adds support for the TP-Link TL-WR841N/ND to trunk. It is
similar to the already supported v10 - see [1]. I have added support
based on that topic; in the meantime it has been confirmed working
(see the forum thread, and also [2]).
Signed-off by Stijn Segers <francesco.borromini@inventati.org>
[1]: https://forum.openwrt.org/viewtopic.php?id=61309
[2]: https://forum.openwrt.org/viewtopic.php?id=63657
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@49099 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index 290e85b68d..595fba2deb 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -850,6 +850,13 @@ define Device/tl-wr841-v10 TPLINK_HWID := 0x08410010 endef +define Device/tl-wr841-v11 + $(Device/tplink-4mlzma) + BOARDNAME := TL-WR841N-v9 + DEVICE_PROFILE := TLWR841 + TPLINK_HWID := 0x08410011 +endef + define Device/tl-wr842n-v1 $(Device/tplink-8m) BOARDNAME := TL-MR3420 @@ -877,7 +884,7 @@ define Device/tl-wr847n-v8 DEVICE_PROFILE := TLWR841 TPLINK_HWID := 0x08470008 endef -TARGET_DEVICES += tl-wr841-v1.5 tl-wr841-v3 tl-wr841-v5 tl-wr841-v7 tl-wr841-v8 tl-wr841-v9 tl-wr841-v10 tl-wr842n-v1 tl-wr842n-v2 tl-wr843nd-v1 tl-wr847n-v8 +TARGET_DEVICES += tl-wr841-v1.5 tl-wr841-v3 tl-wr841-v5 tl-wr841-v7 tl-wr841-v8 tl-wr841-v9 tl-wr841-v10 tl-wr841-v11 tl-wr842n-v1 tl-wr842n-v2 tl-wr843nd-v1 tl-wr847n-v8 define Device/tl-wr941nd-v2 $(Device/tplink-4m) |