mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add linux-libre 6.10.1.
* gnu/packages/linux.scm (linux-libre-6.10-version, linux-libre-6.10-gnu-revision, deblob-scripts-6.10, linux-libre-6.10-pristine-source, linux-libre-6.10-source, linux-libre-headers-6.10, linux-libre-6.10): New variables. * gnu/packages/aux-files/linux-libre/6.10-arm.conf, gnu/packages/aux-files/linux-libre/6.10-arm64.conf, gnu/packages/aux-files/linux-libre/6.10-i686.conf, gnu/packages/aux-files/linux-libre/6.10-x86.conf: New files. * Makefile.am (AUX_FILES): Add them. Change-Id: If62ec2e8029ebd7531d3b4ba9a666c0b5f3b0f4c Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
859d1245b4
commit
93e19067b4
7 changed files with 56303 additions and 0 deletions
|
@ -431,6 +431,11 @@ AUX_FILES = \
|
|||
gnu/packages/aux-files/emacs/guix-emacs.el \
|
||||
gnu/packages/aux-files/findclass.php \
|
||||
gnu/packages/aux-files/guix.vim \
|
||||
gnu/packages/aux-files/linux-libre/6.10-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.10-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.10-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.10-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.10-riscv.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.9-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.9-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.9-i686.conf \
|
||||
|
|
11841
gnu/packages/aux-files/linux-libre/6.10-arm.conf
Normal file
11841
gnu/packages/aux-files/linux-libre/6.10-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
11943
gnu/packages/aux-files/linux-libre/6.10-arm64.conf
Normal file
11943
gnu/packages/aux-files/linux-libre/6.10-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
11988
gnu/packages/aux-files/linux-libre/6.10-i686.conf
Normal file
11988
gnu/packages/aux-files/linux-libre/6.10-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
8279
gnu/packages/aux-files/linux-libre/6.10-riscv.conf
Normal file
8279
gnu/packages/aux-files/linux-libre/6.10-riscv.conf
Normal file
File diff suppressed because it is too large
Load diff
12212
gnu/packages/aux-files/linux-libre/6.10-x86_64.conf
Normal file
12212
gnu/packages/aux-files/linux-libre/6.10-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -509,6 +509,23 @@ (define (%upstream-linux-source version hash)
|
|||
(sha256 hash)))
|
||||
|
||||
|
||||
;; The current "mainline" kernel.
|
||||
|
||||
(define-public linux-libre-6.10-version "6.10.1")
|
||||
(define-public linux-libre-6.10-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.10
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-6.10-version
|
||||
linux-libre-6.10-gnu-revision
|
||||
(base32 "1j43v1z4g1f681wvna2dh9vxaz0pgni0wchbh1xhyhhfcqbm1f47")
|
||||
(base32 "00bx8g1ijswi9zypmwqhxsk9fdkzmarxdbdx5h6gpn7z4d1qly3j")))
|
||||
(define-public linux-libre-6.10-pristine-source
|
||||
(let ((version linux-libre-6.10-version)
|
||||
(hash (base32 "0szpkhrwfqwj068vz032daf3zycv5c93gjxiisjziifi3kyrs43h")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-6.10)))
|
||||
|
||||
;; The current "stable" kernels. That is, the most recently released major
|
||||
;; versions that are still supported upstream.
|
||||
|
||||
|
@ -650,6 +667,11 @@ (define (source-with-patches source patches)
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-6.10-source
|
||||
(source-with-patches linux-libre-6.10-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-6.9-source
|
||||
(source-with-patches linux-libre-6.9-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
@ -770,6 +792,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.10
|
||||
(make-linux-libre-headers* linux-libre-6.10-version
|
||||
linux-libre-6.10-gnu-revision
|
||||
linux-libre-6.10-source))
|
||||
|
||||
(define-public linux-libre-headers-6.9
|
||||
(make-linux-libre-headers* linux-libre-6.9-version
|
||||
linux-libre-6.9-gnu-revision
|
||||
|
@ -1146,6 +1173,14 @@ (define-public linux-libre-pristine-source linux-libre-6.9-pristine-source)
|
|||
(define-public linux-libre-source linux-libre-6.9-source)
|
||||
(define-public linux-libre linux-libre-6.9)
|
||||
|
||||
(define-public linux-libre-6.10
|
||||
(make-linux-libre* linux-libre-6.10-version
|
||||
linux-libre-6.10-gnu-revision
|
||||
linux-libre-6.10-source
|
||||
'("x86_64-linux" "i686-linux" "armhf-linux"
|
||||
"aarch64-linux" "powerpc64le-linux" "riscv64-linux")
|
||||
#:configuration-file kernel-config))
|
||||
|
||||
(define-public linux-libre-6.6
|
||||
(make-linux-libre* linux-libre-6.6-version
|
||||
linux-libre-6.6-gnu-revision
|
||||
|
|
Loading…
Reference in a new issue