From 279f22e9783f2bc05a0c1ddc9e523eae116d682e Mon Sep 17 00:00:00 2001 From: Wilko Meyer Date: Fri, 20 Feb 2026 21:19:35 +0100 Subject: gnu: Add linux-libre 6.19. * gnu/packages/linux.scm (linux-libre-6.19-version, linux-libre-6.19-gnu-revision, deblob-scripts-6.19, linux-libre-6.19-pristine-source, linux-libre-6.19-source, linux-libre-headers-6.19, linux-libre-6.19): New variables. * gnu/packages/aux-files/linux-libre/6.19-i686.conf, gnu/packages/aux-files/linux-libre/6.19-arm64.conf, gnu/packages/aux-files/linux-libre/6.19-x86_64.conf: New files. * Makefile.am (AUX_FILES): Add it. Change-Id: I7df1a4438ad26d85ec34560779047fe626d7859e Signed-off-by: Vagrant Cascadian --- gnu/packages/linux.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 619dfad3bba..92d8b4ce18c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -530,6 +530,21 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; The current "stable" kernels. That is, the most recently released major ;; versions that are still supported upstream. +(define-public linux-libre-6.19-version "6.19.3") +(define-public linux-libre-6.19-gnu-revision "gnu") +(define deblob-scripts-6.19 + (linux-libre-deblob-scripts + linux-libre-6.19-version + linux-libre-6.19-gnu-revision + (base32 "1n39w2lzzxqgfm10y5324bas4x827l34kpvdz64ng5ngp1cspdzw") + (base32 "1780cj1bpf6c6cwkbg1p5b9b4kipkxb0rjljlm96drch8ikxl2k8"))) +(define-public linux-libre-6.19-pristine-source + (let ((version linux-libre-6.19-version) + (hash (base32 "1glf369wfr66lmv9wmijin6idlfgijfsh0gx2qly7gpwmml4jiqf"))) + (make-linux-libre-source version + (%upstream-linux-source version hash) + deblob-scripts-6.19))) + (define-public linux-libre-6.18-version "6.18.13") (define-public linux-libre-6.18-gnu-revision "gnu") (define deblob-scripts-6.18 @@ -667,6 +682,11 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (patches (append (origin-patches source) patches)))) +(define-public linux-libre-6.19-source + (source-with-patches linux-libre-6.19-pristine-source + (list %boot-logo-patch + %linux-libre-arm-export-__sync_icache_dcache-patch))) + (define-public linux-libre-6.18-source (source-with-patches linux-libre-6.18-pristine-source (list %boot-logo-patch @@ -793,6 +813,11 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (description "Headers of the Linux-Libre kernel.") (license license:gpl2))) +(define-public linux-libre-headers-6.19 + (make-linux-libre-headers* linux-libre-6.19-version + linux-libre-6.19-gnu-revision + linux-libre-6.19-source)) + (define-public linux-libre-headers-6.18 (make-linux-libre-headers* linux-libre-6.18-version linux-libre-6.18-gnu-revision @@ -1165,6 +1190,14 @@ Linux kernel. It has been modified to remove all non-free binary blobs.") ;;; Generic kernel packages. ;;; +(define-public linux-libre-6.19 + (make-linux-libre* linux-libre-6.19-version + linux-libre-6.19-gnu-revision + linux-libre-6.19-source + '("x86_64-linux" "i686-linux" "armhf-linux" + "aarch64-linux" "powerpc64le-linux" "riscv64-linux") + #:configuration-file kernel-config)) + (define-public linux-libre-6.18 (make-linux-libre* linux-libre-6.18-version linux-libre-6.18-gnu-revision -- cgit v1.3