mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: linux-libre: Update to 5.10.1.
* gnu/packages/aux-files/linux-libre/5.10-arm.conf, gnu/packages/aux-files/linux-libre/5.10-arm64.conf, gnu/packages/aux-files/linux-libre/5.10-i686.conf, gnu/packages/aux-files/linux-libre/5.10-x86_64.conf: New files. * Makefile.am (AUX_FILES): Add them. * gnu/packages/linux.scm (linux-libre-5.10-version, deblob-scripts-5.10, linux-libre-5.10-pristine-source, linux-libre-5.10-source, linux-libre-headers-5.10, linux-libre-5.10): New variables. (linux-libre-version, linux-libre-pristine-source, linux-libre-source, linux-libre, linux-libre-with-bpf): Update to 5.10.1.
This commit is contained in:
parent
10c06966af
commit
66b5bc3191
6 changed files with 41416 additions and 13 deletions
12
Makefile.am
12
Makefile.am
|
@ -356,10 +356,14 @@ dist_noinst_DATA = \
|
|||
AUX_FILES = \
|
||||
gnu/packages/aux-files/chromium/master-preferences.json \
|
||||
gnu/packages/aux-files/emacs/guix-emacs.el \
|
||||
gnu/packages/aux-files/linux-libre/5.9-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.9-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.9-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.9-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.10-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.10-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.10-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.10-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.9-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.9-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.9-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.9-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.4-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.4-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.4-i686.conf \
|
||||
|
|
9877
gnu/packages/aux-files/linux-libre/5.10-arm.conf
Normal file
9877
gnu/packages/aux-files/linux-libre/5.10-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
10037
gnu/packages/aux-files/linux-libre/5.10-arm64.conf
Normal file
10037
gnu/packages/aux-files/linux-libre/5.10-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
10732
gnu/packages/aux-files/linux-libre/5.10-i686.conf
Normal file
10732
gnu/packages/aux-files/linux-libre/5.10-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
10726
gnu/packages/aux-files/linux-libre/5.10-x86_64.conf
Normal file
10726
gnu/packages/aux-files/linux-libre/5.10-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -349,9 +349,21 @@ (define (%upstream-linux-source version hash)
|
|||
"linux-" version ".tar.xz"))
|
||||
(sha256 hash)))
|
||||
|
||||
;; The current "stable" kernels. That is, the most recently released major
|
||||
;; versions that are still supported upstream.
|
||||
(define-public linux-libre-5.10-version "5.10.1")
|
||||
(define deblob-scripts-5.10
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-5.10-version
|
||||
(base32 "0i99adbfjnir8p8ihhac58dv8p7mnqg4z2jpgvhj35lksdskngf7")
|
||||
(base32 "0hh27ccqimagr3aij7ygwikxw66y63sqwd0xlf49bhpjd090r9a7")))
|
||||
(define-public linux-libre-5.10-pristine-source
|
||||
(let ((version linux-libre-5.10-version)
|
||||
(hash (base32 "0p2fl7kl4ckphq17xir7n7vgrzlhbdqmyd2yyp4yilwvih9625pd")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-5.10)))
|
||||
|
||||
;; The current "stable" kernel. That is, the most recently released major
|
||||
;; version.
|
||||
(define-public linux-libre-5.9-version "5.9.15")
|
||||
(define deblob-scripts-5.9
|
||||
(linux-libre-deblob-scripts
|
||||
|
@ -461,6 +473,11 @@ (define (source-with-patches source patches)
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-5.10-source
|
||||
(source-with-patches linux-libre-5.10-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-5.9-source
|
||||
(source-with-patches linux-libre-5.9-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
@ -565,6 +582,10 @@ (define (make-linux-libre-headers* version source)
|
|||
(description "Headers of the Linux-Libre kernel.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public linux-libre-headers-5.10
|
||||
(make-linux-libre-headers* linux-libre-5.10-version
|
||||
linux-libre-5.10-source))
|
||||
|
||||
(define-public linux-libre-headers-5.9
|
||||
(make-linux-libre-headers* linux-libre-5.9-version
|
||||
linux-libre-5.9-source))
|
||||
|
@ -856,17 +877,23 @@ (define* (make-linux-libre* version source supported-systems
|
|||
;;; Generic kernel packages.
|
||||
;;;
|
||||
|
||||
(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.9
|
||||
(make-linux-libre* linux-libre-5.9-version
|
||||
linux-libre-5.9-source
|
||||
'("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "riscv64-linux")
|
||||
#:configuration-file kernel-config))
|
||||
|
||||
(define-public linux-libre-version linux-libre-5.9-version)
|
||||
(define-public linux-libre-pristine-source linux-libre-5.9-pristine-source)
|
||||
(define-public linux-libre-source linux-libre-5.9-source)
|
||||
(define-public linux-libre linux-libre-5.9)
|
||||
|
||||
(define-public linux-libre-5.4
|
||||
(make-linux-libre* linux-libre-5.4-version
|
||||
linux-libre-5.4-source
|
||||
|
@ -1023,8 +1050,8 @@ (define-public linux-libre-mips64el-fuloong2e
|
|||
(define-public linux-libre-with-bpf
|
||||
(let ((base-linux-libre
|
||||
(make-linux-libre*
|
||||
linux-libre-5.9-version
|
||||
linux-libre-5.9-source
|
||||
linux-libre-5.10-version
|
||||
linux-libre-5.10-source
|
||||
'("x86_64-linux" "i686-linux" "armhf-linux"
|
||||
"aarch64-linux" "riscv64-linux")
|
||||
#:extra-version "bpf"
|
||||
|
|
Loading…
Reference in a new issue