1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 21:04:32 +03:00

[tools] firmware-utils/mktplinkfw: add support for the TL-WR841ND v3 board

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15023 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2009-03-24 16:08:07 +00:00
parent fb4fa0b5f3
commit 3fcf2930a4

View File

@ -34,6 +34,7 @@
#define HEADER_VERSION_V1 0x01000000
#define HWID_TL_WR941ND_V2 0x09410002
#define HWID_TL_WR841ND_V3 0x08410003
#define MD5SUM_LEN 16
@ -101,6 +102,14 @@ char md5salt_boot[MD5SUM_LEN] = {
static struct board_info boards[] = {
{
.id = "TL-WR841NDv3",
.hw_id = HWID_TL_WR841ND_V3,
.hw_rev = 3,
.fw_max_len = 0x3c0000,
.kernel_la = 0x80060000,
.kernel_ep = 0x80060000,
.rootfs_ofs = 0x120000,
}, {
.id = "TL-WR941NDv2",
.hw_id = HWID_TL_WR941ND_V2,
.hw_rev = 2,