diff options
Diffstat (limited to 'gnu/packages/linux.scm')
| -rw-r--r-- | gnu/packages/linux.scm | 43 | 
1 files changed, 38 insertions, 5 deletions
| diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7f677e825d..edfd9308b3 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 @@ -548,7 +563,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."  ;; Here are the support timelines:  ;; <https://www.kernel.org/category/releases.html> -(define-public linux-libre-6.12-version "6.12.54") +(define-public linux-libre-6.12-version "6.12.55")  (define-public linux-libre-6.12-gnu-revision "gnu")  (define deblob-scripts-6.12    (linux-libre-deblob-scripts @@ -558,12 +573,12 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."     (base32 "1yl447396g454116j8v17wsqg5i0gyb2rrxvaygw6xdkbwrrj28j")))  (define-public linux-libre-6.12-pristine-source    (let ((version linux-libre-6.12-version) -        (hash (base32 "0qny8c4r9rf55bvchs5vjplfldngmydn0j47a97c9vpgj0rws38v"))) +        (hash (base32 "17zv8ail05wnbfl9yhgs4llapyk3f6qjjbfqbwx0clx61138z3rj")))     (make-linux-libre-source version                              (%upstream-linux-source version hash)                              deblob-scripts-6.12))) -(define-public linux-libre-6.6-version "6.6.113") +(define-public linux-libre-6.6-version "6.6.114")  (define-public linux-libre-6.6-gnu-revision "gnu")  (define deblob-scripts-6.6    (linux-libre-deblob-scripts @@ -573,7 +588,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."     (base32 "11i7pvm5n31rvp05msbm3ciclr84cz9c94f5r5aa6mmzhslwpbxk")))  (define-public linux-libre-6.6-pristine-source    (let ((version linux-libre-6.6-version) -        (hash (base32 "07n494cblmlfmn8l3kjalwlnb1f9xxxf8c31kkfr5lb1wk9cz58z"))) +        (hash (base32 "0z5r1kmzf3ib0r5rbcmp3cgjyagf6wgdjynpjbhkm5727jh7ahfa")))     (make-linux-libre-source version                              (%upstream-linux-source version hash)                              deblob-scripts-6.6))) @@ -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 | 
