summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Bauer2023-04-17 04:16:38 +0000
committerDavid Bauer2023-04-17 04:18:28 +0000
commite8191eb7efc2804d33feb18573c96e632a6c1086 (patch)
tree72f4ec514b23f31e178765a55bb28eca94920483
parent6a58f456109008620dd15267a7ff0594095e0d77 (diff)
downloadfirmware-utils-e8191eb7efc2804d33feb18573c96e632a6c1086.tar.gz
tplink-safeloader: increase support-list size for AX23 v1
Increase the size of the support-list partition in order to accommodate the added support-list entries for CA/US/TW versions. Fixes: f98095ffd7cf ("tplink-safeloader: increase support-list size for AX23 v1") Signed-off-by: David Bauer <mail@david-bauer.net>
-rw-r--r--src/tplink-safeloader.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tplink-safeloader.c b/src/tplink-safeloader.c
index a4749aa..02ee6d8 100644
--- a/src/tplink-safeloader.c
+++ b/src/tplink-safeloader.c
@@ -1009,9 +1009,9 @@ static struct device_info boards[] = {
{"logo", 0xfde000, 0x02000},
{"partition-table", 0xfe0000, 0x00800},
{"soft-version", 0xfe0800, 0x00100},
- {"support-list", 0xfe0900, 0x00200},
- {"profile", 0xfe0b00, 0x03000},
- {"extra-para", 0xfe3b00, 0x00100},
+ {"support-list", 0xfe0900, 0x00400},
+ {"profile", 0xfe0d00, 0x03000},
+ {"extra-para", 0xfe3d00, 0x00100},
{"radio", 0xff0000, 0x10000},
{NULL, 0, 0}
},