mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add linux-libre-6.12.
* gnu/packages/linux.scm (linux-libre-6.12-version, linux-libre-6.12-gnu-revision, deblob-scripts-6.12, linux-libre-6.12-pristine-source, linux-libre-6.12-source, linux-libre-headers-6.12, linux-libre-6.12): New variables. (linux-libre-headers-latest): Use linux-libre-headers-6.12. (linux-libre-lts-version, linux-libre-lts-gnu-revision, linux-libre-lts-pristine-source, linux-libre-lts-source, linux-libre-lts): Use linux-libre 6.12. * gnu/tests/base.scm (%test-linux-libre-6.12): New test. * gnu/packages/aux-files/linux-libre/6.12-arm.conf, gnu/packages/aux-files/linux-libre/6.12-arm64.conf, gnu/packages/aux-files/linux-libre/6.12-i686.conf, gnu/packages/aux-files/linux-libre/6.12-x86_64.conf, gnu/packages/aux-files/linux-libre/6.12-riscv.conf: New files. * Makefile.am (AUX_FILES): Add them. Change-Id: I430d9dd29cda4bd4b66ad6eddc004935f93bb111
This commit is contained in:
parent
92bfa12254
commit
1dcd0ded86
8 changed files with 57147 additions and 6 deletions
|
@ -441,6 +441,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.12-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.12-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.12-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.12-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.12-riscv.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.11-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.11-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.11-i686.conf \
|
||||
|
|
11995
gnu/packages/aux-files/linux-libre/6.12-arm.conf
Normal file
11995
gnu/packages/aux-files/linux-libre/6.12-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
12154
gnu/packages/aux-files/linux-libre/6.12-arm64.conf
Normal file
12154
gnu/packages/aux-files/linux-libre/6.12-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
12096
gnu/packages/aux-files/linux-libre/6.12-i686.conf
Normal file
12096
gnu/packages/aux-files/linux-libre/6.12-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
8515
gnu/packages/aux-files/linux-libre/6.12-riscv.conf
Normal file
8515
gnu/packages/aux-files/linux-libre/6.12-riscv.conf
Normal file
File diff suppressed because it is too large
Load diff
12340
gnu/packages/aux-files/linux-libre/6.12-x86_64.conf
Normal file
12340
gnu/packages/aux-files/linux-libre/6.12-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -514,6 +514,21 @@ (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.12-version "6.12.8")
|
||||
(define-public linux-libre-6.12-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.12
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-6.12-version
|
||||
linux-libre-6.12-gnu-revision
|
||||
(base32 "0i24k4zc6x5lvif12ba53c6cd5ydiah9j32ly2wpl88424ld389h")
|
||||
(base32 "0jwnb1pd8ayfkck3sw3jjlsg7gayig0ymiay53mg7qchhycih8xs")))
|
||||
(define-public linux-libre-6.12-pristine-source
|
||||
(let ((version linux-libre-6.12-version)
|
||||
(hash (base32 "0y992b484rkkaqdkz5mw2is1l0izxhm3cl7fi5f72jx0bh3dm492")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-6.12)))
|
||||
|
||||
(define-public linux-libre-6.11-version "6.11.11")
|
||||
(define-public linux-libre-6.11-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.11
|
||||
|
@ -636,6 +651,11 @@ (define (source-with-patches source patches)
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-6.12-source
|
||||
(source-with-patches linux-libre-6.12-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-6.11-source
|
||||
(source-with-patches linux-libre-6.11-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
@ -757,6 +777,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.12
|
||||
(make-linux-libre-headers* linux-libre-6.12-version
|
||||
linux-libre-6.12-gnu-revision
|
||||
linux-libre-6.12-source))
|
||||
|
||||
(define-public linux-libre-headers-6.11
|
||||
(make-linux-libre-headers* linux-libre-6.11-version
|
||||
linux-libre-6.11-gnu-revision
|
||||
|
@ -797,7 +822,7 @@ (define-public linux-libre-headers linux-libre-headers-5.15.49)
|
|||
;; linux-libre-headers-latest points to the latest headers package
|
||||
;; and should be used as a dependency for packages that depend on
|
||||
;; the headers.
|
||||
(define-public linux-libre-headers-latest linux-libre-headers-6.11)
|
||||
(define-public linux-libre-headers-latest linux-libre-headers-6.12)
|
||||
|
||||
|
||||
;;;
|
||||
|
@ -1118,6 +1143,14 @@ (define* (make-linux-libre* version gnu-revision source supported-systems
|
|||
;;; Generic kernel packages.
|
||||
;;;
|
||||
|
||||
(define-public linux-libre-6.12
|
||||
(make-linux-libre* linux-libre-6.12-version
|
||||
linux-libre-6.12-gnu-revision
|
||||
linux-libre-6.12-source
|
||||
'("x86_64-linux" "i686-linux" "armhf-linux"
|
||||
"aarch64-linux" "powerpc64le-linux" "riscv64-linux")
|
||||
#:configuration-file kernel-config))
|
||||
|
||||
(define-public linux-libre-6.11
|
||||
(make-linux-libre* linux-libre-6.11-version
|
||||
linux-libre-6.11-gnu-revision
|
||||
|
@ -1176,11 +1209,11 @@ (define-public linux-libre-5.4
|
|||
;; Linux-Libre.
|
||||
;; Reference: <https://www.kernel.org/category/releases.html>
|
||||
|
||||
(define-public linux-libre-lts-version linux-libre-6.6-version)
|
||||
(define-public linux-libre-lts-gnu-revision linux-libre-6.6-gnu-revision)
|
||||
(define-public linux-libre-lts-pristine-source linux-libre-6.6-pristine-source)
|
||||
(define-public linux-libre-lts-source linux-libre-6.6-source)
|
||||
(define-public linux-libre-lts linux-libre-6.6)
|
||||
(define-public linux-libre-lts-version linux-libre-6.12-version)
|
||||
(define-public linux-libre-lts-gnu-revision linux-libre-6.12-gnu-revision)
|
||||
(define-public linux-libre-lts-pristine-source linux-libre-6.12-pristine-source)
|
||||
(define-public linux-libre-lts-source linux-libre-6.12-source)
|
||||
(define-public linux-libre-lts linux-libre-6.12)
|
||||
|
||||
|
||||
;;;
|
||||
|
|
|
@ -576,6 +576,9 @@ (define %test-basic-os
|
|||
(test-basic-os))
|
||||
|
||||
;; Ensure the LTS kernels are up to snuff, too.
|
||||
(define %test-linux-libre-6.12
|
||||
(test-basic-os linux-libre-6.12))
|
||||
|
||||
(define %test-linux-libre-6.6
|
||||
(test-basic-os linux-libre-6.6))
|
||||
|
||||
|
|
Loading…
Reference in a new issue