diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-23 12:42:16 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-23 12:42:16 +0000 |
commit | 8daecfbcff7b175b9a13ee4e8bb92365f20921b1 (patch) | |
tree | c70eaa1bf0a08ce8dff53b187f6577427b3726c5 /tools | |
parent | f4380ab731a37f23300991681c695192b57f0c7b (diff) |
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 <fercerpav@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24811 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools')
-rw-r--r-- | tools/firmware-utils/src/mktplinkfw.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index aea7e3595..73603bf1e 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/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 @@ -151,6 +152,14 @@ static struct board_info boards[] = { .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, .hw_rev = 2, |