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> SVN-Revision: 40035
This commit is contained in:
parent
6aae3694c9
commit
d9341f97ed
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
@ -380,6 +381,11 @@ static struct board_info boards[] = {
|
|||
.hw_id = HWID_TL_WR720N_V3,
|
||||
.hw_rev = 1,
|
||||
.layout_id = "4Mlzma",
|
||||
}, {
|
||||
.id = "GS-OOLITEv1",
|
||||
.hw_id = HWID_GS_OOLITE_V1,
|
||||
.hw_rev = 1,
|
||||
.layout_id = "16Mlzma",
|
||||
}, {
|
||||
/* terminating entry */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue