From 921af7c09412145b07f03887a3c548d23c511ec9 Mon Sep 17 00:00:00 2001 From: Elias Bakken Date: Sun, 9 Aug 2026 21:27:24 +0200 Subject: [PATCH] Stop forcing Armbian to ignore its own artifact cache ARTIFACT_IGNORE_CACHE=yes was forcing a full kernel rebuild from scratch every time, regardless of ccache warmth - this is a coarser, package-level cache (can skip kernel compilation entirely if a matching prebuilt kernel .deb already exists for the current config+patches hash) that's a different layer from ccache, which only speeds up individual object-file compiles within a build that's already running. Now that the kernel/patches are stable rather than under heavy iteration, there's no reason to keep paying for a full rebuild on every invocation. Co-Authored-By: Claude Sonnet 5 --- userpatches/config-rebuild.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userpatches/config-rebuild.conf b/userpatches/config-rebuild.conf index 391357c..33de4e0 100644 --- a/userpatches/config-rebuild.conf +++ b/userpatches/config-rebuild.conf @@ -26,7 +26,7 @@ COMPRESS_OUTPUTIMAGE=sha,gpg,xz BOARD=recore BRANCH=edge RELEASE=trixie -ARTIFACT_IGNORE_CACHE=yes +ARTIFACT_IGNORE_CACHE=no BOOT_FS_LABEL="Recore_boot" ROOT_FS_LABEL="Recore_root" BSPFREEZE=yes