diff options
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 |
