mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-30 22:36:50 +01:00
gnu: Add linux-libre 6.11.4.
* gnu/packages/linux.scm (linux-libre-6.11-version, linux-libre-6.11-gnu-revision, deblob-scripts-6.11, linux-libre-6.11-pristine-source, linux-libre-6.11-source, linux-libre-headers-6.11, linux-libre-6.11): New variables. * 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, gnu/packages/aux-files/linux-libre/6.11-riscv.conf, gnu/packages/aux-files/linux-libre/6.11-x86.conf: New files. * Makefile.am (AUX_FILES): Add them. Co-authored-by: Ahmad Draidi <a.r.draidi@redscript.org> Change-Id: I35bad9fbea9f568e60e7f24c95f85c240ef96277 Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
5703914e93
commit
92910f5413
7 changed files with 56788 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.11-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.11-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.11-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.11-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.11-riscv.conf \
|
||||
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 \
|
||||
|
|
11936
gnu/packages/aux-files/linux-libre/6.11-arm.conf
Normal file
11936
gnu/packages/aux-files/linux-libre/6.11-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
12032
gnu/packages/aux-files/linux-libre/6.11-arm64.conf
Normal file
12032
gnu/packages/aux-files/linux-libre/6.11-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
12053
gnu/packages/aux-files/linux-libre/6.11-i686.conf
Normal file
12053
gnu/packages/aux-files/linux-libre/6.11-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
8439
gnu/packages/aux-files/linux-libre/6.11-riscv.conf
Normal file
8439
gnu/packages/aux-files/linux-libre/6.11-riscv.conf
Normal file
File diff suppressed because it is too large
Load diff
12289
gnu/packages/aux-files/linux-libre/6.11-x86_64.conf
Normal file
12289
gnu/packages/aux-files/linux-libre/6.11-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -509,6 +509,22 @@ (define (%upstream-linux-source version hash)
|
|||
"linux-" version ".tar.xz"))
|
||||
(sha256 hash)))
|
||||
|
||||
;; The current "mainline" kernel.
|
||||
|
||||
(define-public linux-libre-6.11-version "6.11.4")
|
||||
(define-public linux-libre-6.11-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.11
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-6.11-version
|
||||
linux-libre-6.11-gnu-revision
|
||||
(base32 "0igjsnlnvzl9q2cb5ypavbfirldqw86v7krmxljivshh765xzykd")
|
||||
(base32 "184f3p911nyimz7s51h2n15j0zlpphrzslvz5yq1jzjs4y099dca")))
|
||||
(define-public linux-libre-6.11-pristine-source
|
||||
(let ((version linux-libre-6.11-version)
|
||||
(hash (base32 "0mcg1rrw9b0lwj88jkaw6ic2mks8xh8i92v90sbr2x35ljhb0m5x")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-6.11)))
|
||||
|
||||
;; The current "stable" kernels. That is, the most recently released major
|
||||
;; versions that are still supported upstream.
|
||||
|
@ -650,6 +666,11 @@ (define (source-with-patches source patches)
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-6.11-source
|
||||
(source-with-patches linux-libre-6.11-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-6.10-source
|
||||
(source-with-patches linux-libre-6.10-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
@ -776,6 +797,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.11
|
||||
(make-linux-libre-headers* linux-libre-6.11-version
|
||||
linux-libre-6.11-gnu-revision
|
||||
linux-libre-6.11-source))
|
||||
|
||||
(define-public linux-libre-headers-6.10
|
||||
(make-linux-libre-headers* linux-libre-6.10-version
|
||||
linux-libre-6.10-gnu-revision
|
||||
|
@ -1156,6 +1182,14 @@ (define-public linux-libre-pristine-source linux-libre-6.10-pristine-source)
|
|||
(define-public linux-libre-source linux-libre-6.10-source)
|
||||
(define-public linux-libre linux-libre-6.10)
|
||||
|
||||
(define-public linux-libre-6.11
|
||||
(make-linux-libre* linux-libre-6.11-version
|
||||
linux-libre-6.11-gnu-revision
|
||||
linux-libre-6.11-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