diff options
| author | Leo Famulari <leo@famulari.name> | 2025-10-19 22:49:14 -0400 |
|---|---|---|
| committer | Leo Famulari <leo@famulari.name> | 2025-10-28 20:01:06 -0400 |
| commit | aeb2454a6259fe347fafce2bdece22ceed841c2c (patch) | |
| tree | 0c42b187ae8ab73c6c4527e8c3b612eb3918f519 /gnu/packages/linux.scm | |
| parent | 2bf4dcfa96687fdad556ee6163909c65504ddc97 (diff) | |
gnu: Add linux-libre 6.17.
* gnu/packages/linux.scm (linux-libre-6.17-version,
linux-libre-6.17-gnu-revision, deblob-scripts-6.17,
linux-libre-6.17-pristine-source, linux-libre-6.17-source,
linux-libre-headers-6.17): New variables.
(linux-libre-headers-latest): Use linux-libre-headers-6.17.
* gnu/packages/aux-files/linux-libre/6.17-arm64.conf,
gnu/packages/aux-files/linux-libre/6.17-i686.conf,
gnu/packages/aux-files/linux-libre/6.17-riscv.conf,
gnu/packages/aux-files/linux-libre/6.17-x86_64.conf: New files.
* Makefile.am (AUX_FILES): Add them.
Co-authored-by: Dariqq <dariqq@posteo.net>
Change-Id: I52d2bc9114a948d31726d2da2a5916fc607dcdd6
Diffstat (limited to 'gnu/packages/linux.scm')
| -rw-r--r-- | gnu/packages/linux.scm | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 17b1130cc96..edfd9308b33 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.17-version "6.17.5") +(define-public linux-libre-6.17-gnu-revision "gnu") +(define deblob-scripts-6.17 + (linux-libre-deblob-scripts + linux-libre-6.17-version + linux-libre-6.17-gnu-revision + (base32 "15qc7p6axs5l9syizbcbnksw8lxm8nnlcrl3q4k8cbs3lrxacpjv") + (base32 "14fypjidk49l0799dbi1pacy37ks94k0bs38cck2y4glxfpbfqr6"))) +(define-public linux-libre-6.17-pristine-source + (let ((version linux-libre-6.17-version) + (hash (base32 "1kibm4b3dvncw8dzxllxiza0923q6f2xlsng4gkln5n2x4vaypy0"))) + (make-linux-libre-source version + (%upstream-linux-source version hash) + deblob-scripts-6.17))) + (define-public linux-libre-6.16-version "6.16.12") (define-public linux-libre-6.16-gnu-revision "gnu") (define deblob-scripts-6.16 @@ -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.17-source + (source-with-patches linux-libre-6.17-pristine-source + (list %boot-logo-patch + %linux-libre-arm-export-__sync_icache_dcache-patch))) + (define-public linux-libre-6.16-source (source-with-patches linux-libre-6.16-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.17 + (make-linux-libre-headers* linux-libre-6.17-version + linux-libre-6.17-gnu-revision + linux-libre-6.17-source)) + (define-public linux-libre-headers-6.16 (make-linux-libre-headers* linux-libre-6.16-version linux-libre-6.16-gnu-revision @@ -837,7 +862,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." ;; linux-libre-headers-latest points to the latest headers package ;; and should be used as a dependency for packages that depend on ;; the headers. -(define-public linux-libre-headers-latest linux-libre-headers-6.16) +(define-public linux-libre-headers-latest linux-libre-headers-6.17) ;;; @@ -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.17 + (make-linux-libre* linux-libre-6.17-version + linux-libre-6.17-gnu-revision + linux-libre-6.17-source + '("x86_64-linux" "i686-linux" "armhf-linux" + "aarch64-linux" "powerpc64le-linux" "riscv64-linux") + #:configuration-file kernel-config)) + (define-public linux-libre-6.16 (make-linux-libre* linux-libre-6.16-version linux-libre-6.16-gnu-revision |
