From 3fbe32ac8cfbca325855b9b1a4528e62699146e5 Mon Sep 17 00:00:00 2001 From: HiGarfield Date: Sun, 21 Jun 2026 00:19:33 +0800 Subject: [PATCH 1/5] 202606210019 --- version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version b/version index 9c10c0bd9..8d3620e6a 100644 --- a/version +++ b/version @@ -1 +1 @@ -202606030029 +202606210019 From b531805aca02efb2c76ef615bc8a7a3113ca0a4f Mon Sep 17 00:00:00 2001 From: HiGarfield Date: Sun, 21 Jun 2026 16:50:07 +0800 Subject: [PATCH 2/5] mt76: mt76x02: enable AP client BSSID matching --- package/kernel/mt76/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/kernel/mt76/Makefile b/package/kernel/mt76/Makefile index 487c78870..84b0b3a54 100644 --- a/package/kernel/mt76/Makefile +++ b/package/kernel/mt76/Makefile @@ -7,8 +7,8 @@ PKG_LICENSE_FILES:= PKG_SOURCE_URL:=https://github.com/HiGarfield/mt76 PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=2b57ce85e5fc1d3831fc6dbeb472959bbb1557e1 -PKG_MIRROR_HASH:=e3d01bbc145044ab79521dcaf739a3f7973bf72a9924fb5934a21ee765c04edd +PKG_SOURCE_VERSION:=771c05c600045fbfeb59afd4948a3228ed9fea2b +PKG_MIRROR_HASH:=82c4be3267f5de0cf546c3d4b0447f0321081f40d876accbe9ef2c3e0cb57dbb PKG_MAINTAINER:=Felix Fietkau PKG_BUILD_PARALLEL:=1 From 2e3b52b4533a98dd6675598f196a38772d474ae8 Mon Sep 17 00:00:00 2001 From: HiGarfield Date: Sun, 21 Jun 2026 16:50:11 +0800 Subject: [PATCH 3/5] 202606211650 --- version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version b/version index 8d3620e6a..6d6ee680a 100644 --- a/version +++ b/version @@ -1 +1 @@ -202606210019 +202606211650 From ba8c0ced6bcfcfc4ee6dc3facf0944f941886c32 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 21 Jun 2026 14:32:54 +0000 Subject: [PATCH 4/5] Fix HC5962 sysupgrade by moving to platform_do_upgrade and using nand_do_platform_check --- target/linux/ramips/base-files/lib/upgrade/platform.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh index 34933d11c..6469b937d 100755 --- a/target/linux/ramips/base-files/lib/upgrade/platform.sh +++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh @@ -247,10 +247,7 @@ platform_check_image() { } return 0 ;; - hc5962) - # these boards use metadata images - return 0 - ;; + hc5962|\ ubnt-erx) nand_do_platform_check "$board" "$1" return $?; @@ -275,7 +272,6 @@ platform_pre_upgrade() { local board=$(ramips_board_name) case "$board" in - hc5962|\ ubnt-erx) nand_do_upgrade "$ARGV" ;; @@ -286,6 +282,10 @@ platform_do_upgrade() { local board=$(ramips_board_name) case "$board" in + hc5962|\ + ubnt-erx) + nand_do_upgrade "$ARGV" + ;; *) default_do_upgrade "$ARGV" ;; From 741fdd277f3d203b48f52a62616e2cb17b4e78b6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 21 Jun 2026 15:08:53 +0000 Subject: [PATCH 5/5] Fix HC5962 NAND sysupgrade - move to platform_pre_upgrade for LEDE 17.01 --- target/linux/ramips/base-files/lib/upgrade/platform.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh index 6469b937d..c4c741567 100755 --- a/target/linux/ramips/base-files/lib/upgrade/platform.sh +++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh @@ -272,6 +272,7 @@ platform_pre_upgrade() { local board=$(ramips_board_name) case "$board" in + hc5962|\ ubnt-erx) nand_do_upgrade "$ARGV" ;; @@ -282,10 +283,6 @@ platform_do_upgrade() { local board=$(ramips_board_name) case "$board" in - hc5962|\ - ubnt-erx) - nand_do_upgrade "$ARGV" - ;; *) default_do_upgrade "$ARGV" ;;