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

SVN-Revision: 15023
master
Gabor Juhos 16 years ago
parent b4f5a2a5cb
commit 406ce1ae5d
  1. 9
      tools/firmware-utils/src/mktplinkfw.c

@ -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,

Loading…
Cancel
Save