mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add linux-libre 6.8.
* gnu/packages/linux.scm (linux-libre-6.8-version, linux-libre-6.8-gnu-revision, deblob-scripts-6.8, linux-libre-6.8-pristine-source, linux-libre-6.8-source, linux-libre-headers-6.8, linux-libre-6.8): New variables. * gnu/packages/aux-files/linux-libre/6.8-arm.conf, gnu/packages/aux-files/linux-libre/6.8-arm64.conf, gnu/packages/aux-files/linux-libre/6.8-i686.conf, gnu/packages/aux-files/linux-libre/6.8-x86.conf: New files. * Makefile.am (AUX_FILES): Add them. Signed-off-by: Leo Famulari <leo@famulari.name> Change-Id: I338eb725e0b991c67e4d98bd1ef0c441d3d8f0c6
This commit is contained in:
parent
6f0c3f8bf6
commit
f6f4c71df5
6 changed files with 47651 additions and 5 deletions
|
@ -425,6 +425,10 @@ 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.8-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.8-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.8-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.8-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.7-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.7-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.7-i686.conf \
|
||||
|
|
11773
gnu/packages/aux-files/linux-libre/6.8-arm.conf
Normal file
11773
gnu/packages/aux-files/linux-libre/6.8-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
11827
gnu/packages/aux-files/linux-libre/6.8-arm64.conf
Normal file
11827
gnu/packages/aux-files/linux-libre/6.8-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
11899
gnu/packages/aux-files/linux-libre/6.8-i686.conf
Normal file
11899
gnu/packages/aux-files/linux-libre/6.8-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
12107
gnu/packages/aux-files/linux-libre/6.8-x86_64.conf
Normal file
12107
gnu/packages/aux-files/linux-libre/6.8-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -497,6 +497,26 @@ (define (%upstream-linux-source version hash)
|
|||
|
||||
;; The current "mainline" kernel.
|
||||
|
||||
(define-public linux-libre-6.8-version "6.8.1")
|
||||
(define-public linux-libre-6.8-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.8
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-6.8-version
|
||||
linux-libre-6.8-gnu-revision
|
||||
(base32 "1kqwcm8baq3zx1z8jrgnvm9yps3y9jbf4pv1pbqqprpdscgl9089")
|
||||
(base32 "04xk6myysrfrhfpq6zah8wk2ska7idmr968nh6pcd0ixbhas2k92")))
|
||||
(define-public linux-libre-6.8-pristine-source
|
||||
(let ((version linux-libre-6.8-version)
|
||||
(hash (base32 "0s7zgk9m545v8y7qjhv7cprrh58j46gpmb8iynyhy2hlwcv8j34d")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-6.8)))
|
||||
|
||||
|
||||
|
||||
;; The current "stable" kernels. That is, the most recently released major
|
||||
;; versions that are still supported upstream.
|
||||
|
||||
(define-public linux-libre-6.7-version "6.7.10")
|
||||
(define-public linux-libre-6.7-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.7
|
||||
|
@ -512,8 +532,9 @@ (define-public linux-libre-6.7-pristine-source
|
|||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-6.7)))
|
||||
|
||||
;; The current "stable" kernels. That is, the most recently released major
|
||||
;; versions that are still supported upstream.
|
||||
;; The "longterm" kernels — the older releases with long-term upstream support.
|
||||
;; Here are the support timelines:
|
||||
;; <https://www.kernel.org/category/releases.html>
|
||||
|
||||
(define-public linux-libre-6.6-version "6.6.22")
|
||||
(define-public linux-libre-6.6-gnu-revision "gnu")
|
||||
|
@ -530,9 +551,6 @@ (define-public linux-libre-6.6-pristine-source
|
|||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-6.6)))
|
||||
|
||||
;; The "longterm" kernels — the older releases with long-term upstream support.
|
||||
;; Here are the support timelines:
|
||||
;; <https://www.kernel.org/category/releases.html>
|
||||
(define-public linux-libre-6.1-version "6.1.82")
|
||||
(define-public linux-libre-6.1-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.1
|
||||
|
@ -636,6 +654,11 @@ (define (source-with-patches source patches)
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-6.8-source
|
||||
(source-with-patches linux-libre-6.8-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-6.7-source
|
||||
(source-with-patches linux-libre-6.7-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
@ -756,6 +779,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.8
|
||||
(make-linux-libre-headers* linux-libre-6.8-version
|
||||
linux-libre-6.8-gnu-revision
|
||||
linux-libre-6.8-source))
|
||||
|
||||
(define-public linux-libre-headers-6.7
|
||||
(make-linux-libre-headers* linux-libre-6.7-version
|
||||
linux-libre-6.7-gnu-revision
|
||||
|
@ -1114,6 +1142,14 @@ (define-public linux-libre-pristine-source linux-libre-6.7-pristine-source)
|
|||
(define-public linux-libre-source linux-libre-6.7-source)
|
||||
(define-public linux-libre linux-libre-6.7)
|
||||
|
||||
(define-public linux-libre-6.8
|
||||
(make-linux-libre* linux-libre-6.8-version
|
||||
linux-libre-6.8-gnu-revision
|
||||
linux-libre-6.8-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