From 9fe57d112e5e06c4ab13ee8210d87bec81f87544 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 27 Jan 2026 12:14:46 -0800 Subject: gnu: Add linux-libre 6.18. * gnu/packages/linux.scm (linux-libre-6.18-version, linux-libre-6.18-gnu-revision, deblob-scripts-6.18, linux-libre-6.18-pristine-source, linux-libre-6.18-source, linux-libre-headers-6.18, linux-libre-6.18): New variables. * gnu/packages/aux-files/linux-libre/6.18-i686.conf, gnu/packages/aux-files/linux-libre/6.18-arm64.conf, gnu/packages/aux-files/linux-libre/6.18-x86_64.conf: New files. * Makefile.am (AUX_FILES): Add it. Co-authored-by: Dariqq Co-authored-by: Vagrant Cascadian 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 4fa5649c8c7..ac7ad7e25e6 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -529,6 +529,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.18-version "6.18.7") +(define-public linux-libre-6.18-gnu-revision "gnu") +(define deblob-scripts-6.18 + (linux-libre-deblob-scripts + linux-libre-6.18-version + linux-libre-6.18-gnu-revision + (base32 "1piyq7183bdf169w66k62yr1vbs0ls7pqx3cyyk7hisw8vhy643j") + (base32 "1xdz33lshw1xs6a5qiwhvxzdh2a0acll1zdyk2mnn9d4579a4gn1"))) +(define-public linux-libre-6.18-pristine-source + (let ((version linux-libre-6.18-version) + (hash (base32 "07lgbc0w7fd9akxmazhkpjgxhd3ffwh7in2nkchhdbprbk8s89mp"))) + (make-linux-libre-source version + (%upstream-linux-source version hash) + deblob-scripts-6.18))) + (define-public linux-libre-6.17-version "6.17.13") (define-public linux-libre-6.17-gnu-revision "gnu") (define deblob-scripts-6.17 @@ -666,6 +681,11 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (patches (append (origin-patches source) patches)))) +(define-public linux-libre-6.18-source + (source-with-patches linux-libre-6.18-pristine-source + (list %boot-logo-patch + %linux-libre-arm-export-__sync_icache_dcache-patch))) + (define-public linux-libre-6.17-source (source-with-patches linux-libre-6.17-pristine-source (list %boot-logo-patch @@ -792,6 +812,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.18 + (make-linux-libre-headers* linux-libre-6.18-version + linux-libre-6.18-gnu-revision + linux-libre-6.18-source)) + (define-public linux-libre-headers-6.17 (make-linux-libre-headers* linux-libre-6.17-version linux-libre-6.17-gnu-revision @@ -1164,6 +1189,14 @@ Linux kernel. It has been modified to remove all non-free binary blobs.") ;;; Generic kernel packages. ;;; +(define-public linux-libre-6.18 + (make-linux-libre* linux-libre-6.18-version + linux-libre-6.18-gnu-revision + linux-libre-6.18-source + '("x86_64-linux" "i686-linux" "armhf-linux" + "aarch64-linux" "powerpc64le-linux" "riscv64-linux") + #:configuration-file kernel-config)) + (define-public linux-libre-6.17 (make-linux-libre* linux-libre-6.17-version linux-libre-6.17-gnu-revision -- cgit v1.3