diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-12-08 12:46:25 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-12-08 12:46:25 +0000 |
commit | 00c14fd8659954304a48a19547a4dc1bb7a125f2 (patch) | |
tree | a44fa87fb3c9d520b8eb653cf1d5817f8fd60c01 /tools | |
parent | 65ffc1bc61be09a828a361c68f754284f5ba9d21 (diff) | |
download | upstream-00c14fd8659954304a48a19547a4dc1bb7a125f2.tar.gz upstream-00c14fd8659954304a48a19547a4dc1bb7a125f2.tar.bz2 upstream-00c14fd8659954304a48a19547a4dc1bb7a125f2.zip |
ar71xx: preliminary support for the TL-WR1043ND
Adds board support for the TP-Link TL-WR1043ND Based on the Atheros AP81 platform.
Presently the RTL8366RB switch support is missing due to no driver.
The ethernet works with 5 ports@1Gbit but is missing vlan support.
Hope Ive done this right, First time submiting a patch.
Signed-off-by: Andrew Tarabaras <andrew@advancedtechnologies.com.au>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18696 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 cb6a59bea3..08f345e7f5 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -37,6 +37,7 @@ #define HWID_TL_WR841ND_V3 0x08410003 #define HWID_TL_WR841ND_V5 0x08410005 #define HWID_TL_WR941ND_V2 0x09410002 +#define HWID_TL_WR1043ND_V1 0x10430001 #define MD5SUM_LEN 16 @@ -137,6 +138,14 @@ static struct board_info boards[] = { .kernel_ep = 0x80060000, .rootfs_ofs = 0x140000, }, { + .id = "TL-WR1043NDv1", + .hw_id = HWID_TL_WR1043ND_V1, + .hw_rev = 1, + .fw_max_len = 0x7c0000, + .kernel_la = 0x80060000, + .kernel_ep = 0x80060000, + .rootfs_ofs = 0x140000, + }, { /* terminating entry */ } }; |