diff options
| author | Leo Famulari <leo@famulari.name> | 2026-01-27 12:14:46 -0800 |
|---|---|---|
| committer | Vagrant Cascadian <vagrant@debian.org> | 2026-01-29 13:30:06 -0800 |
| commit | 9fe57d112e5e06c4ab13ee8210d87bec81f87544 (patch) | |
| tree | 33b549c74b1655a3e50fac0c9ea2dc8bb31513e8 /gnu/packages/linux.scm | |
| parent | 4f0a9231aa52ffeaef8783b14e097f142d353cd8 (diff) | |
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 <dariqq@posteo.net>
Co-authored-by: Vagrant Cascadian <vagrant@debian.org>
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Diffstat (limited to 'gnu/packages/linux.scm')
| -rw-r--r-- | gnu/packages/linux.scm | 33 |
1 files changed, 33 insertions, 0 deletions
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 |
