summaryrefslogtreecommitdiff
path: root/gnu/packages/linux.scm
diff options
context:
space:
mode:
authorWilko Meyer <w@wmeyer.eu>2026-02-20 21:19:35 +0100
committerVagrant Cascadian <vagrant@debian.org>2026-02-22 16:58:24 -0800
commit279f22e9783f2bc05a0c1ddc9e523eae116d682e (patch)
tree1a3a427ac1a6e4f60f2e4717815d59f2bc2b3934 /gnu/packages/linux.scm
parente80896ab347371ebc688634c26d3e0f8f242576f (diff)
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 <vagrant@debian.org>
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r--gnu/packages/linux.scm33
1 files changed, 33 insertions, 0 deletions
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