From 723d3b610f9ada50602e9383fc49ef15574a75f3 Mon Sep 17 00:00:00 2001 From: crychic-cybertan Date: Thu, 4 Jun 2026 18:50:15 +0800 Subject: [PATCH] WIFI-15543: Update anti-rollback function on Sonicfi RAP750W-311A/RAP750E-S/RAP750E-H MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We have resolved issue [WIFI-15306] certificates partition fails to mount on rap750w-311a - Jira via PR#1027, which was merged into release “Tip 5.0”. Therefore, rollback shall be restricted starting from version 5.0. However, the previous rollback restriction version set for [WIFI-15401] RAP7110C-341X/RAP750W-311A/RAP750E-S/RAP750E-H anti-rollback funciton - Jira was version4.2.3 at that time. Now the downgrade restriction version needs to be updated as "5.0.0" Signed-off-by: crychic-cybertan --- feeds/qca-wifi-7/ipq53xx/base-files/lib/upgrade/platform.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/feeds/qca-wifi-7/ipq53xx/base-files/lib/upgrade/platform.sh b/feeds/qca-wifi-7/ipq53xx/base-files/lib/upgrade/platform.sh index 402bcd3ce..a83ba1188 100755 --- a/feeds/qca-wifi-7/ipq53xx/base-files/lib/upgrade/platform.sh +++ b/feeds/qca-wifi-7/ipq53xx/base-files/lib/upgrade/platform.sh @@ -225,8 +225,8 @@ platform_check_image() { local info_output=$(get_firmware_info "$1") FW_VER="${info_output%%|*}" FW_BUILD_DATE="${info_output#*|}" - local LIMIT_VER="4.2.3" - local LIMIT_BUILD_DATE="20260402" + local LIMIT_VER="5.0.0" + local LIMIT_BUILD_DATE="20260603" echo "Checking version for $board..." echo "Current: v$CURRENT_VER, Firmware: v$FW_VER, Limit: <= v$LIMIT_VER"