1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-14 03:03:52 +02:00

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

SVN-Revision: 15023
This commit is contained in:
Gabor Juhos 2009-03-24 16:08:07 +00:00
parent b4f5a2a5cb
commit 406ce1ae5d

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,