diff options
| author | Sander Vanheule | 2024-01-31 07:58:26 +0000 |
|---|---|---|
| committer | Sander Vanheule | 2024-01-31 07:58:26 +0000 |
| commit | c1e06daf4622b2d60bb39e35704c62b2bd634be3 (patch) | |
| tree | 9d6f42c634bf02f08708cabb7a0b4c034d6b01a8 | |
| parent | 335d063cff23631050e6629f1dc692101f6df99d (diff) | |
| download | firmware-utils-c1e06daf4622b2d60bb39e35704c62b2bd634be3.tar.gz | |
tplink-safeloader: bump EAP225-V3 compat_level
Since firmware revision 5.1.0, the firmware compatibility level
increased to 2 for the following devices:
- EAP225 v3,
- EAP225 v4,
- EAP225-Outdoor v1, and
- EAP225-Outdoor v3.
This means that this and later revisions will refuse (OpenWrt) images
with compatibility level 1, so increase our level to get them accepted
again.
Signed-off-by: Sander Vanheule <sander@svanheule.net>
| -rw-r--r-- | src/tplink-safeloader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tplink-safeloader.c b/src/tplink-safeloader.c index 73d92fa..2ffe1b9 100644 --- a/src/tplink-safeloader.c +++ b/src/tplink-safeloader.c @@ -1985,7 +1985,7 @@ static struct device_info boards[] = { "EAP225-Outdoor(TP-Link|UN|AC1200-D):3.0 CA,JP\r\n", .part_trail = PART_TRAIL_NONE, .soft_ver = SOFT_VER_DEFAULT, - .soft_ver_compat_level = 1, + .soft_ver_compat_level = 2, .partitions = { {"fs-uboot", 0x00000, 0x20000}, |