mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add linux-libre 5.12.2.
* gnu/packages/linux.scm (linux-libre-5.12-version, deblob-scripts-5.12, linux-libre-5.12-pristine-source, linux-libre-5.12-source, linux-libre-headers-5.12, linux-libre-5.12): New variables. * gnu/packages/aux-files/linux-libre/5.12-arm.conf, gnu/packages/aux-files/linux-libre/5.12-arm64.conf, gnu/packages/aux-files/linux-libre/5.12-i686.conf, gnu/packages/aux-files/linux-libre/5.12-x86_64.conf: New files. * Makefile.am (AUX_FILES): Add them.
This commit is contained in:
parent
d2a265b08e
commit
a21355bd10
6 changed files with 41958 additions and 0 deletions
|
@ -363,6 +363,10 @@ AUX_FILES = \
|
|||
gnu/packages/aux-files/chromium/master-preferences.json \
|
||||
gnu/packages/aux-files/emacs/guix-emacs.el \
|
||||
gnu/packages/aux-files/guix.vim \
|
||||
gnu/packages/aux-files/linux-libre/5.12-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.12-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.12-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.12-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.11-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.11-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.11-i686.conf \
|
||||
|
|
9984
gnu/packages/aux-files/linux-libre/5.12-arm.conf
Normal file
9984
gnu/packages/aux-files/linux-libre/5.12-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
10236
gnu/packages/aux-files/linux-libre/5.12-arm64.conf
Normal file
10236
gnu/packages/aux-files/linux-libre/5.12-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
10829
gnu/packages/aux-files/linux-libre/5.12-i686.conf
Normal file
10829
gnu/packages/aux-files/linux-libre/5.12-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
10877
gnu/packages/aux-files/linux-libre/5.12-x86_64.conf
Normal file
10877
gnu/packages/aux-files/linux-libre/5.12-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -356,6 +356,19 @@ (define (%upstream-linux-source version hash)
|
|||
|
||||
;; The current "stable" kernels. That is, the most recently released major
|
||||
;; versions that are still supported upstream.
|
||||
(define-public linux-libre-5.12-version "5.12.2")
|
||||
(define deblob-scripts-5.12
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-5.12-version
|
||||
(base32 "1vdsr9y4gckknrbqcjyfakwva3k0vb5zcivzk3k1s9mh7qp9dils")
|
||||
(base32 "1qp25fd4wgjyk7dzdq9yirm1z5w68sd1p3wv8lch8259i51gwjnf")))
|
||||
(define-public linux-libre-5.12-pristine-source
|
||||
(let ((version linux-libre-5.12-version)
|
||||
(hash (base32 "03gp5vq8vkwvksjsa1birds37rmrr73s9ik6m1wvgz8mdncvk64c")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-5.12)))
|
||||
|
||||
(define-public linux-libre-5.11-version "5.11.18")
|
||||
(define deblob-scripts-5.11
|
||||
(linux-libre-deblob-scripts
|
||||
|
@ -478,6 +491,11 @@ (define (source-with-patches source patches)
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-5.12-source
|
||||
(source-with-patches linux-libre-5.12-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-5.11-source
|
||||
(source-with-patches linux-libre-5.11-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
@ -592,6 +610,10 @@ (define (make-linux-libre-headers* version source)
|
|||
(description "Headers of the Linux-Libre kernel.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public linux-libre-headers-5.12
|
||||
(make-linux-libre-headers* linux-libre-5.12-version
|
||||
linux-libre-5.12-source))
|
||||
|
||||
(define-public linux-libre-headers-5.11
|
||||
(make-linux-libre-headers* linux-libre-5.11-version
|
||||
linux-libre-5.11-source))
|
||||
|
@ -890,6 +912,12 @@ (define* (make-linux-libre* version source supported-systems
|
|||
;;; Generic kernel packages.
|
||||
;;;
|
||||
|
||||
(define-public linux-libre-5.12
|
||||
(make-linux-libre* linux-libre-5.12-version
|
||||
linux-libre-5.12-source
|
||||
'("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "riscv64-linux")
|
||||
#:configuration-file kernel-config))
|
||||
|
||||
(define-public linux-libre-5.11
|
||||
(make-linux-libre* linux-libre-5.11-version
|
||||
linux-libre-5.11-source
|
||||
|
|
Loading…
Reference in a new issue