diff options
author | John Crispin <john@openwrt.org> | 2015-02-24 12:00:50 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-02-24 12:00:50 +0000 |
commit | 9358a8a798609a89e99fa002641164a918a7e3ac (patch) | |
tree | 82d5c15ea95368ad66c7e6de74212210b8237df9 /tools/firmware-utils | |
parent | 7c24d8627f61f0649d5497f6bce1801b7fc255ff (diff) | |
download | upstream-9358a8a798609a89e99fa002641164a918a7e3ac.tar.gz upstream-9358a8a798609a89e99fa002641164a918a7e3ac.tar.bz2 upstream-9358a8a798609a89e99fa002641164a918a7e3ac.zip |
ar71xx: TL-WA7210n v2 support
This patch adds support for TP-Link TL-WA7210n[0]
[0] http://www.tplink.com/en/products/details/?model=TL-WA7210N
Signed-off-by: Hendrik Frenzel <hfrenzel@scunc.net>
SVN-Revision: 44526
Diffstat (limited to 'tools/firmware-utils')
-rw-r--r-- | tools/firmware-utils/src/mktplinkfw.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index 0a5e4c3282..4817e58f02 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -41,6 +41,7 @@ #define HWID_TL_MR3420_V2 0x34200002 #define HWID_TL_WA701N_V1 0x07010001 #define HWID_TL_WA701N_V2 0x07010002 +#define HWID_TL_WA7210N_V2 0x72100002 #define HWID_TL_WA7510N_V1 0x75100001 #define HWID_TL_WA801ND_V1 0x08010001 #define HWID_TL_WA830RE_V1 0x08300010 @@ -260,6 +261,11 @@ static struct board_info boards[] = { .hw_rev = 1, .layout_id = "4Mlzma", }, { + .id = "TL-WA7210N", + .hw_id = HWID_TL_WA7210N_V2, + .hw_rev = 2, + .layout_id = "4Mlzma", + }, { .id = "TL-WA7510N", .hw_id = HWID_TL_WA7510N_V1, .hw_rev = 1, |