From 51740990cd1d5375a566454e692b479986cba958 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 10 Dec 2016 20:45:50 +0100 Subject: firmware-utils: add support for TL-WR1043ND v4 to mktplinkfw and tplink-safeloader The TL-WR1043ND v4 uses a kernel image with a mktplinkfw header inside the os-image partition of a tplink-safeloader image. Signed-off-by: Matthias Schiffer --- tools/firmware-utils/src/mktplinkfw.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tools/firmware-utils/src/mktplinkfw.c') diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index 34e6546..fbf8960 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -178,6 +178,20 @@ static struct flash_layout layouts[] = { .kernel_ep = 0xc0000000, .rootfs_ofs = 0x2a0000, }, { + /* + Some devices (e.g. TL-WR1043 v4) use a mktplinkfw kernel image + embedded in a tplink-safeloader image as os-image partition. + + We use a 1.5MB partition for the compressed kernel, which should + be sufficient, but not too wasteful (the flash of the TL-WR1043 v4 + has 16MB in total). + */ + .id = "16Msafeloader", + .fw_max_len = 0x180000, + .kernel_la = 0x80060000, + .kernel_ep = 0x80060000, + .rootfs_ofs = 0, + }, { /* terminating entry */ } }; -- cgit v1.1