From 4f159ef2366b255bac9176d0523aaa4f18148952 Mon Sep 17 00:00:00 2001 From: Davide Fioravanti Date: Sun, 5 May 2019 22:21:44 +0200 Subject: [PATCH] tools/firmware-utils: mktplinkfw2: add Qualcomm layouts This commit adds the partition layout used by the TP-Link Archer D50 and probably by the TP-Link Archer D7 to mktplinkfw2. Signed-off-by: Davide Fioravanti --- src/mktplinkfw2.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/mktplinkfw2.c b/src/mktplinkfw2.c index 35db848..102d72b 100644 --- a/src/mktplinkfw2.c +++ b/src/mktplinkfw2.c @@ -158,6 +158,18 @@ static struct flash_layout layouts[] = { .kernel_la = 0x80000000, .kernel_ep = 0x80000000, .rootfs_ofs = 0x140000, + }, { + .id = "8Mqca", + .fw_max_len = 0x7a0000, + .kernel_la = 0x80060000, + .kernel_ep = 0x80060000, + .rootfs_ofs = 0x140000, + }, { + .id = "16Mqca", + .fw_max_len = 0xf90000, + .kernel_la = 0x80060000, + .kernel_ep = 0x80060000, + .rootfs_ofs = 0x140000, }, { /* terminating entry */ } -- 2.30.2