firmware-utils/mktplinkfw: add support for the TL-MR10U board
authorGabor Juhos <juhosg@openwrt.org>
Fri, 26 Jul 2013 07:32:00 +0000 (07:32 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Fri, 26 Jul 2013 07:32:00 +0000 (07:32 +0000)
Based on andelf's patch:
http://andelf.diandian.com/post/2013-05-22/40050677370

Signed-off-by: Oleg Titov <oleg.titov@gmail.com>
Patchwork: http://patchwork.openwrt.org/patch/3840/
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 37549

tools/firmware-utils/src/mktplinkfw.c

index 74a55fd27aa185c8d0cd8e3f86b99888f9cc3539..19dc2b4cc96364fa05a168762da534564e667248 100644 (file)
@@ -30,6 +30,7 @@
 #define ALIGN(x,a) ({ typeof(a) __a = (a); (((x) + __a - 1) & ~(__a - 1)); })
 
 #define HEADER_VERSION_V1      0x01000000
+#define HWID_TL_MR10U_V1       0x00100101
 #define HWID_TL_MR3020_V1      0x30200001
 #define HWID_TL_MR3220_V1      0x32200001
 #define HWID_TL_MR3220_V2      0x32200002
@@ -193,6 +194,11 @@ static struct flash_layout layouts[] = {
 
 static struct board_info boards[] = {
        {
+               .id             = "TL-MR10Uv1",
+               .hw_id          = HWID_TL_MR10U_V1,
+               .hw_rev         = 1,
+               .layout_id      = "4Mlzma",
+       }, {
                .id             = "TL-MR3020v1",
                .hw_id          = HWID_TL_MR3020_V1,
                .hw_rev         = 1,