mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add linux-libre 5.18.
* gnu/packages/linux.scm (linux-libre-5.18-version, linux-libre-5.18-gnu-revision, deblob-scripts-5.18, linux-libre-5.18-pristine-source, linux-libre-5.18-source, linux-libre-headers-5.18, linux-libre-5.18): New variables. * gnu/packages/aux-files/linux-libre/5.18-arm.conf, gnu/packages/aux-files/linux-libre/5.18-arm64.conf, gnu/packages/aux-files/linux-libre/5.18-i686.conf, gnu/packages/aux-files/linux-libre/5.18-x86_64.conf: New files. * Makefile.am (AUX_FILES): Add them.
This commit is contained in:
parent
c62f6268e7
commit
5bf97d2891
6 changed files with 44190 additions and 0 deletions
|
@ -395,6 +395,10 @@ AUX_FILES = \
|
|||
gnu/packages/aux-files/chromium/master-preferences.json \
|
||||
gnu/packages/aux-files/emacs/guix-emacs.el \
|
||||
gnu/packages/aux-files/guix.vim \
|
||||
gnu/packages/aux-files/linux-libre/5.18-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.18-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.18-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.18-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.17-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.17-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.17-i686.conf \
|
||||
|
|
10437
gnu/packages/aux-files/linux-libre/5.18-arm.conf
Normal file
10437
gnu/packages/aux-files/linux-libre/5.18-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
10888
gnu/packages/aux-files/linux-libre/5.18-arm64.conf
Normal file
10888
gnu/packages/aux-files/linux-libre/5.18-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
11361
gnu/packages/aux-files/linux-libre/5.18-i686.conf
Normal file
11361
gnu/packages/aux-files/linux-libre/5.18-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
11468
gnu/packages/aux-files/linux-libre/5.18-x86_64.conf
Normal file
11468
gnu/packages/aux-files/linux-libre/5.18-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -352,6 +352,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-5.18-version "5.18.7")
|
||||
(define-public linux-libre-5.18-gnu-revision "gnu")
|
||||
(define deblob-scripts-5.18
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-5.18-version
|
||||
linux-libre-5.18-gnu-revision
|
||||
(base32 "09aikdhij4d89wqd8mmkdr0nrfwqz6dx3n74qm6wx815rfngd2dz")
|
||||
(base32 "0vjpn8iw9yg39sr6jfhzyvivf159h9zfgnjamwa283zfll0h0a53")))
|
||||
(define-public linux-libre-5.18-pristine-source
|
||||
(let ((version linux-libre-5.18-version)
|
||||
(hash (base32 "0nsj44p1wn7ysckhv4a99ncj0a9xxhvi54v63w1047sspxjd18m1")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-5.18)))
|
||||
|
||||
(define-public linux-libre-5.17-version "5.17.15")
|
||||
(define-public linux-libre-5.17-gnu-revision "gnu")
|
||||
(define deblob-scripts-5.17
|
||||
|
@ -488,6 +503,11 @@ (define (source-with-patches source patches)
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-5.18-source
|
||||
(source-with-patches linux-libre-5.18-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-5.17-source
|
||||
(source-with-patches linux-libre-5.17-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
@ -602,6 +622,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-5.18
|
||||
(make-linux-libre-headers* linux-libre-5.18-version
|
||||
linux-libre-5.18-gnu-revision
|
||||
linux-libre-5.18-source))
|
||||
|
||||
(define-public linux-libre-headers-5.17
|
||||
(make-linux-libre-headers* linux-libre-5.17-version
|
||||
linux-libre-5.17-gnu-revision
|
||||
|
@ -923,6 +948,13 @@ (define* (make-linux-libre* version gnu-revision source supported-systems
|
|||
;;; Generic kernel packages.
|
||||
;;;
|
||||
|
||||
(define-public linux-libre-5.18
|
||||
(make-linux-libre* linux-libre-5.18-version
|
||||
linux-libre-5.18-gnu-revision
|
||||
linux-libre-5.18-source
|
||||
'("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "riscv64-linux")
|
||||
#:configuration-file kernel-config))
|
||||
|
||||
(define-public linux-libre-5.17
|
||||
(make-linux-libre* linux-libre-5.17-version
|
||||
linux-libre-5.17-gnu-revision
|
||||
|
|
Loading…
Reference in a new issue