From 1dbf5705ca7c511540ed201239e082222de50a58 Mon Sep 17 00:00:00 2001 From: Douglas Teles Date: Tue, 23 Jun 2026 15:00:46 -0300 Subject: [PATCH] linux: fix incomplete 6.12.94 bump Commit 4273d71442 was meant to bump PKG_VERSION 6.12.79 -> 6.12.94 and remove the now-upstream u_ether patch in one commit, but the git add failed silently on a path that had already been git-rm'd, so only the patch deletion landed and the version bump itself stayed unstaged. This adds the missing PKG_VERSION and PKG_SHA256 lines so the build actually picks up 6.12.94. Co-Authored-By: Claude Opus 4.7 --- projects/ArchR/packages/linux/package.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/ArchR/packages/linux/package.mk b/projects/ArchR/packages/linux/package.mk index df4935e809..c95cb1bded 100644 --- a/projects/ArchR/packages/linux/package.mk +++ b/projects/ArchR/packages/linux/package.mk @@ -41,7 +41,8 @@ case ${DEVICE} in PKG_URL="https://www.kernel.org/pub/linux/kernel/v${PKG_VERSION/.*/}.x/${PKG_NAME}-${PKG_VERSION}.tar.xz" ;; *) - PKG_VERSION="6.12.79" + PKG_VERSION="6.12.94" + PKG_SHA256="e998a232b9418db3301cb58468e291a4f41d6ab8306029b30d991f56251dc8d2" PKG_PATCH_DIRS+=" 6.12-LTS" PKG_URL="https://www.kernel.org/pub/linux/kernel/v${PKG_VERSION/.*/}.x/${PKG_NAME}-${PKG_VERSION}.tar.xz" ;;