mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: linux-libre: Add linux-libre 6.0.6.
* gnu/packages/linux.scm (linux-libre-6.0-version, linux-libre-6.0-pristine-source, linux-libre-6.0-source, linux-libre-headers-6.0, linux-libre-6.0): New variables. * gnu/packages/aux-files/linux-libre/6.0-arm.conf, gnu/packages/aux-files/linux-libre/6.0-arm64.conf, gnu/packages/aux-files/linux-libre/6.0-i686.conf, gnu/packages/aux-files/linux-libre/6.0-x86_64.conf: New files. * Makefile.am (AUX_FILES): Add them.
This commit is contained in:
parent
c6d9492009
commit
2fde8cf399
6 changed files with 44842 additions and 1 deletions
|
@ -399,6 +399,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/6.0-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.0-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.0-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.0-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.19-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.19-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.19-i686.conf \
|
||||
|
|
10602
gnu/packages/aux-files/linux-libre/6.0-arm.conf
Normal file
10602
gnu/packages/aux-files/linux-libre/6.0-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
11101
gnu/packages/aux-files/linux-libre/6.0-arm64.conf
Normal file
11101
gnu/packages/aux-files/linux-libre/6.0-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
11482
gnu/packages/aux-files/linux-libre/6.0-i686.conf
Normal file
11482
gnu/packages/aux-files/linux-libre/6.0-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
11619
gnu/packages/aux-files/linux-libre/6.0-x86_64.conf
Normal file
11619
gnu/packages/aux-files/linux-libre/6.0-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -355,6 +355,22 @@ (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-6.0-version "6.0.6")
|
||||
(define-public linux-libre-6.0-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.0
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-6.0-version
|
||||
linux-libre-6.0-gnu-revision
|
||||
(base32 "0iwbjrgiwch5v1xpnm9wk9zqw2v6lxja0k8yj2x0amxc9ma68176")
|
||||
(base32 "1x8nqdf338gqsn8d825xgvx44nawdy28zkg3cdmfxn09g749g6pz")))
|
||||
(define-public linux-libre-6.0-pristine-source
|
||||
(let ((version linux-libre-6.0-version)
|
||||
(hash (base32 "1akzfkwjbxki6r41gcnp5fml389i8ng9bid9c4ysg6w65nphajw6")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-6.0)))
|
||||
|
||||
|
||||
(define-public linux-libre-5.19-version "5.19.17")
|
||||
(define-public linux-libre-5.19-gnu-revision "gnu")
|
||||
(define deblob-scripts-5.19
|
||||
|
@ -370,7 +386,6 @@ (define-public linux-libre-5.19-pristine-source
|
|||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-5.19)))
|
||||
|
||||
|
||||
;; The "longterm" kernels — the older releases with long-term upstream support.
|
||||
;; Here are the support timelines:
|
||||
;; <https://www.kernel.org/category/releases.html>
|
||||
|
@ -492,6 +507,11 @@ (define (source-with-patches source patches)
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-6.0-source
|
||||
(source-with-patches linux-libre-6.0-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-5.19-source
|
||||
(source-with-patches linux-libre-5.19-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
@ -606,6 +626,11 @@ (define (make-linux-libre-headers* version gnu-revision source)
|
|||
(description "Headers of the Linux-Libre kernel.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public linux-libre-headers-6.0
|
||||
(make-linux-libre-headers* linux-libre-6.0-version
|
||||
linux-libre-6.0-gnu-revision
|
||||
linux-libre-6.0-source))
|
||||
|
||||
(define-public linux-libre-headers-5.19
|
||||
(make-linux-libre-headers* linux-libre-5.19-version
|
||||
linux-libre-5.19-gnu-revision
|
||||
|
@ -935,6 +960,14 @@ (define* (make-linux-libre* version gnu-revision source supported-systems
|
|||
;;; Generic kernel packages.
|
||||
;;;
|
||||
|
||||
(define-public linux-libre-6.0
|
||||
(make-linux-libre* linux-libre-6.0-version
|
||||
linux-libre-6.0-gnu-revision
|
||||
linux-libre-6.0-source
|
||||
'("x86_64-linux" "i686-linux" "armhf-linux"
|
||||
"aarch64-linux" "powerpc64le-linux" "riscv64-linux")
|
||||
#:configuration-file kernel-config))
|
||||
|
||||
(define-public linux-libre-5.19
|
||||
(make-linux-libre* linux-libre-5.19-version
|
||||
linux-libre-5.19-gnu-revision
|
||||
|
|
Loading…
Reference in a new issue