diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-01-04 17:30:53 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-01-04 17:30:53 +0000 |
commit | 923e5d35434d9bd13d108b2d216978eff169844b (patch) | |
tree | 92ca8c51fe4a1e35b96cf64a50f306ae419a2d55 /tools/firmware-utils/src | |
parent | 72019009c7d63aa80898e9d46d05ea36fb1000f4 (diff) | |
download | upstream-923e5d35434d9bd13d108b2d216978eff169844b.tar.gz upstream-923e5d35434d9bd13d108b2d216978eff169844b.tar.bz2 upstream-923e5d35434d9bd13d108b2d216978eff169844b.zip |
firmware-utils/mktplinkfw: add support for TL-WA701N/ND
SVN-Revision: 29655
Diffstat (limited to 'tools/firmware-utils/src')
-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 1dcfd86156..d2696af3f8 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -33,6 +33,7 @@ #define HWID_TL_MR3020_V1 0x30200001 #define HWID_TL_MR3220_V1 0x32200001 #define HWID_TL_MR3420_V1 0x34200001 +#define HWID_TL_WA701N_V1 0x07010001 #define HWID_TL_WA901ND_V1 0x09010001 #define HWID_TL_WA901ND_V2 0x09010002 #define HWID_TL_WR703N_V1 0x07030101 @@ -177,6 +178,11 @@ static struct board_info boards[] = { .hw_rev = 1, .layout_id = "4M", }, { + .id = "TL-WA701Nv1", + .hw_id = HWID_TL_WA701N_V1, + .hw_rev = 1, + .layout_id = "4M", + }, { .id = "TL-WA901NDv1", .hw_id = HWID_TL_WA901ND_V1, .hw_rev = 1, |