diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-09-19 17:52:44 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-09-19 17:52:44 +0000 |
commit | 1b8597d209a58a6bbd5c84e145ef0603f2fbbcbf (patch) | |
tree | 5806358f70db61fa690012d98beb54ce9deea260 /tools | |
parent | ba8664976d1030ac90ee79590b20cf6ef7eb8c13 (diff) | |
download | master-187ad058-1b8597d209a58a6bbd5c84e145ef0603f2fbbcbf.tar.gz master-187ad058-1b8597d209a58a6bbd5c84e145ef0603f2fbbcbf.tar.bz2 master-187ad058-1b8597d209a58a6bbd5c84e145ef0603f2fbbcbf.zip |
firmware-utils/mktplinkfw: add support for the TL-MR13U board
Signed-off-by: Oleg Titov <oleg.titov@gmail.com>
Patchwork: http://patchwork.openwrt.org/patch/4063/
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38065 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools')
-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 19dc2b4cc9..2574678c8f 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -31,6 +31,7 @@ #define HEADER_VERSION_V1 0x01000000 #define HWID_TL_MR10U_V1 0x00100101 +#define HWID_TL_MR13U_V1 0x00130101 #define HWID_TL_MR3020_V1 0x30200001 #define HWID_TL_MR3220_V1 0x32200001 #define HWID_TL_MR3220_V2 0x32200002 @@ -199,6 +200,11 @@ static struct board_info boards[] = { .hw_rev = 1, .layout_id = "4Mlzma", }, { + .id = "TL-MR13Uv1", + .hw_id = HWID_TL_MR13U_V1, + .hw_rev = 1, + .layout_id = "4Mlzma", + }, { .id = "TL-MR3020v1", .hw_id = HWID_TL_MR3020_V1, .hw_rev = 1, |