diff options
author | Leo Famulari <leo@famulari.name> | 2021-02-26 14:40:26 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-02-28 14:57:37 -0500 |
commit | 1b5b882120daf7d111aa351a919a90e818324347 (patch) | |
tree | 3f78af7d0398cd40933fe7961178e3976dbbd2a1 | |
parent | 25d409bfd7c35801805c5ddd74e6c61ea6ad1f70 (diff) | |
download | guix-1b5b882120daf7d111aa351a919a90e818324347.tar guix-1b5b882120daf7d111aa351a919a90e818324347.tar.gz |
gnu: linux-libre: Update to 5.11.2.
* gnu/packages/linux.scm (linux-libre-version, linux-libre-pristine-source,
linux-libre-source, linux-libre): Update to 5.11.2.
-rw-r--r-- | gnu/packages/linux.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4eb2506407..93de944cbe 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -367,6 +367,9 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.11))) +;; The "longterm" kernels — the older releases with long-term upstream support. +;; Here are the support timelines: +;; <https://www.kernel.org/category/releases.html> (define-public linux-libre-5.10-version "5.10.19") (define deblob-scripts-5.10 (linux-libre-deblob-scripts @@ -380,9 +383,6 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.10))) -;; The "longterm" kernels — the older releases with long-term upstream support. -;; Here are the support timelines: -;; <https://www.kernel.org/category/releases.html> (define-public linux-libre-5.4-version "5.4.101") (define deblob-scripts-5.4 (linux-libre-deblob-scripts @@ -890,17 +890,17 @@ It has been modified to remove all non-free binary blobs.") '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "riscv64-linux") #:configuration-file kernel-config)) +(define-public linux-libre-version linux-libre-5.11-version) +(define-public linux-libre-pristine-source linux-libre-5.11-pristine-source) +(define-public linux-libre-source linux-libre-5.11-source) +(define-public linux-libre linux-libre-5.11) + (define-public linux-libre-5.10 (make-linux-libre* linux-libre-5.10-version linux-libre-5.10-source '("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "riscv64-linux") #:configuration-file kernel-config)) -(define-public linux-libre-version linux-libre-5.10-version) -(define-public linux-libre-pristine-source linux-libre-5.10-pristine-source) -(define-public linux-libre-source linux-libre-5.10-source) -(define-public linux-libre linux-libre-5.10) - (define-public linux-libre-5.4 (make-linux-libre* linux-libre-5.4-version linux-libre-5.4-source |