From e609c5d751868ae823c236332c76ce3c50acdd2e Mon Sep 17 00:00:00 2001 From: Sander Vanheule Date: Mon, 27 Jun 2022 18:31:24 +0200 Subject: [PATCH] tplink-safeloader: drop unqualified EAP225-V3 IDs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit After adding the regionless identifiers in commit 9563fe8e78cb ("tplink-safeloader: add regionless EAP225-V3 IDs"), the generated support-list partition exceeded the allocated space of 256 bytes. This resulted in the tool failing to generate factory images with the following warning: support-list partition too big (more than 256 bytes): Success Although this message reports "Success", the tool actually fails with a return code of 1. This essentialy reverts commit 9563fe8e78cb, since the region-qualified IDs are also compatible with the non region-qualified devices. The change makes the generated support-list partition fit within the allocated space again. Tested-by: Andre Klärner Signed-off-by: Sander Vanheule --- src/tplink-safeloader.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tplink-safeloader.c b/src/tplink-safeloader.c index 9ed3c3f..7a31ac2 100644 --- a/src/tplink-safeloader.c +++ b/src/tplink-safeloader.c @@ -1675,10 +1675,8 @@ static struct device_info boards[] = { "SupportList:\r\n" "EAP225(TP-Link|UN|AC1350-D):3.0\r\n" "EAP225(TP-Link|UN|AC1350-D):3.20\r\n" - "EAP225(TP-Link|UN|AC1350-D):4.0\r\n" "EAP225(TP-Link|UN|AC1350-D):4.0 CA\r\n" "EAP225-Outdoor(TP-Link|UN|AC1200-D):1.0\r\n" - "EAP225-Outdoor(TP-Link|UN|AC1200-D):3.0\r\n" "EAP225-Outdoor(TP-Link|UN|AC1200-D):3.0 CA,JP\r\n", .part_trail = PART_TRAIL_NONE, .soft_ver = SOFT_VER_DEFAULT, -- 2.30.2