diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2014-03-27 06:36:49 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2014-03-27 06:36:49 +0000 |
commit | 7e2cf324e2d333a25840b3461d4320d0f18e7962 (patch) | |
tree | cd718d234c8bbc72e883f487ed3f6243399f1c07 | |
parent | 19e070803b6f0718a696ba85cdb1f55b466dc53a (diff) | |
download | upstream-7e2cf324e2d333a25840b3461d4320d0f18e7962.tar.gz upstream-7e2cf324e2d333a25840b3461d4320d0f18e7962.tar.bz2 upstream-7e2cf324e2d333a25840b3461d4320d0f18e7962.zip |
firmware-utils/mktplinkfw: add support for the Oolite v1 board
Patch-by: Lars Bøgild Thomsen <lth@cow.dk>
Patchwork: http://patchwork.openwrt.org/patch/4922/
[juhosg: fix whitespaces]
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40035 3c298f89-4303-0410-b956-a3cf2f4a3e73
-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 d92207f488..bb5ebd7fdc 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -30,6 +30,7 @@ #define ALIGN(x,a) ({ typeof(a) __a = (a); (((x) + __a - 1) & ~(__a - 1)); }) #define HEADER_VERSION_V1 0x01000000 +#define HWID_GS_OOLITE_V1 0x3C000101 #define HWID_TL_MR10U_V1 0x00100101 #define HWID_TL_MR13U_V1 0x00130101 #define HWID_TL_MR3020_V1 0x30200001 @@ -381,6 +382,11 @@ static struct board_info boards[] = { .hw_rev = 1, .layout_id = "4Mlzma", }, { + .id = "GS-OOLITEv1", + .hw_id = HWID_GS_OOLITE_V1, + .hw_rev = 1, + .layout_id = "16Mlzma", + }, { /* terminating entry */ } }; |