From: Gabor Juhos Date: Thu, 23 Dec 2010 12:42:16 +0000 (+0000) Subject: ar71xx: add support for TL-WR740N v1 X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=8268958f54345420d98f491ab0f499cf850246a0;p=project%2Ffirmware-utils.git ar71xx: add support for TL-WR740N v1 Same as TL-WR741ND but with different hardware ID and without detachable antenna. Signed-off-by: Paul Fertser SVN-Revision: 24811 --- diff --git a/src/mktplinkfw.c b/src/mktplinkfw.c index aea7e35..73603bf 100644 --- a/src/mktplinkfw.c +++ b/src/mktplinkfw.c @@ -37,6 +37,7 @@ #define HWID_TL_MR3420_V1 0x34200001 #define HWID_TL_WA901ND_V1 0x09010001 #define HWID_TL_WR741ND_V1 0x07410001 +#define HWID_TL_WR740N_V1 0x07400001 #define HWID_TL_WR841N_V1_5 0x08410002 #define HWID_TL_WR841ND_V3 0x08410003 #define HWID_TL_WR841ND_V5 0x08410005 @@ -150,6 +151,14 @@ static struct board_info boards[] = { .kernel_la = 0x80060000, .kernel_ep = 0x80060000, .rootfs_ofs = 0x140000, + }, { + .id = "TL-WR740Nv1", + .hw_id = HWID_TL_WR740N_V1, + .hw_rev = 1, + .fw_max_len = 0x3c0000, + .kernel_la = 0x80060000, + .kernel_ep = 0x80060000, + .rootfs_ofs = 0x140000, }, { .id = "TL-WR841Nv1.5", .hw_id = HWID_TL_WR841N_V1_5,