From 57c9cb421e428c840d5aa0d6c56aead952bfadb4 Mon Sep 17 00:00:00 2001 From: Robert Marko Date: Sun, 7 Apr 2024 14:44:46 +0200 Subject: [PATCH] at91bootstrap: update PKG_MIRROR_HASH to zstd for v3 at91bootstrap So, when updating the hash for at91bootstrap it was done via CHECK_ALL=1 so that updated the PKG_MIRROR_HASH for the main v4 version hash, but at91bootstrap checkout version depends on the subtarget as well. Choosing to build for sam9x will change the at91bootstrap version to v3 and this hash was not refreshed thus causing the CI to fail. Fixes: 6918c637b797 ("treewide: package: update missed hashes after switch to ZSTD") Signed-off-by: Robert Marko --- package/boot/at91bootstrap/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/boot/at91bootstrap/Makefile b/package/boot/at91bootstrap/Makefile index a2a1f2bddb..1b145c8a8b 100644 --- a/package/boot/at91bootstrap/Makefile +++ b/package/boot/at91bootstrap/Makefile @@ -26,7 +26,7 @@ endif ifeq ($(AT91BOOTSTRAP_V4),n) PKG_VERSION=v3.10.4 - PKG_MIRROR_HASH=6fe61fe90838e785917383bb9e887fa05e1bd061a6725954242f504e38b5c426 + PKG_MIRROR_HASH:=08ab81c37b995592992d6eda3f76ce9aad6e2b3e9d9c4f7e88c1ba8bb8346657 PKG_SOURCE_VERSION=404846dd283894367a015ca59189bcf927d92e11 BINARIES_DIR=binaries endif