diff options
author | Wilko Meyer <w@wmeyer.eu> | 2024-09-29 15:16:18 +0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2024-10-20 16:16:51 -0400 |
commit | 92910f5413fd9112c0502138eed5fff758c5de65 (patch) | |
tree | cadca4e643cf58f01b76f02dfc2195dbaa6237af /gnu/packages/linux.scm | |
parent | 5703914e93d81ac6037240582abe899282e78f15 (diff) | |
download | guix-92910f5413fd9112c0502138eed5fff758c5de65.tar.gz guix-92910f5413fd9112c0502138eed5fff758c5de65.zip |
gnu: Add linux-libre 6.11.4.
* gnu/packages/linux.scm (linux-libre-6.11-version, linux-libre-6.11-gnu-revision,
deblob-scripts-6.11, linux-libre-6.11-pristine-source, linux-libre-6.11-source,
linux-libre-headers-6.11, linux-libre-6.11): New variables.
* gnu/packages/aux-files/linux-libre/6.11-arm.conf,
gnu/packages/aux-files/linux-libre/6.11-arm64.conf,
gnu/packages/aux-files/linux-libre/6.11-i686.conf,
gnu/packages/aux-files/linux-libre/6.11-riscv.conf,
gnu/packages/aux-files/linux-libre/6.11-x86.conf: New files.
* Makefile.am (AUX_FILES): Add them.
Co-authored-by: Ahmad Draidi <a.r.draidi@redscript.org>
Change-Id: I35bad9fbea9f568e60e7f24c95f85c240ef96277
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index d7beef26f1..272d9bdd3f 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -509,6 +509,22 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." "linux-" version ".tar.xz")) (sha256 hash))) +;; The current "mainline" kernel. + +(define-public linux-libre-6.11-version "6.11.4") +(define-public linux-libre-6.11-gnu-revision "gnu") +(define deblob-scripts-6.11 + (linux-libre-deblob-scripts + linux-libre-6.11-version + linux-libre-6.11-gnu-revision + (base32 "0igjsnlnvzl9q2cb5ypavbfirldqw86v7krmxljivshh765xzykd") + (base32 "184f3p911nyimz7s51h2n15j0zlpphrzslvz5yq1jzjs4y099dca"))) +(define-public linux-libre-6.11-pristine-source + (let ((version linux-libre-6.11-version) + (hash (base32 "0mcg1rrw9b0lwj88jkaw6ic2mks8xh8i92v90sbr2x35ljhb0m5x"))) + (make-linux-libre-source version + (%upstream-linux-source version hash) + deblob-scripts-6.11))) ;; The current "stable" kernels. That is, the most recently released major ;; versions that are still supported upstream. @@ -650,6 +666,11 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (patches (append (origin-patches source) patches)))) +(define-public linux-libre-6.11-source + (source-with-patches linux-libre-6.11-pristine-source + (list %boot-logo-patch + %linux-libre-arm-export-__sync_icache_dcache-patch))) + (define-public linux-libre-6.10-source (source-with-patches linux-libre-6.10-pristine-source (list %boot-logo-patch @@ -776,6 +797,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.11 + (make-linux-libre-headers* linux-libre-6.11-version + linux-libre-6.11-gnu-revision + linux-libre-6.11-source)) + (define-public linux-libre-headers-6.10 (make-linux-libre-headers* linux-libre-6.10-version linux-libre-6.10-gnu-revision @@ -1156,6 +1182,14 @@ Linux kernel. It has been modified to remove all non-free binary blobs.") (define-public linux-libre-source linux-libre-6.10-source) (define-public linux-libre linux-libre-6.10) +(define-public linux-libre-6.11 + (make-linux-libre* linux-libre-6.11-version + linux-libre-6.11-gnu-revision + linux-libre-6.11-source + '("x86_64-linux" "i686-linux" "armhf-linux" + "aarch64-linux" "powerpc64le-linux" "riscv64-linux") + #:configuration-file kernel-config)) + (define-public linux-libre-6.6 (make-linux-libre* linux-libre-6.6-version linux-libre-6.6-gnu-revision |