mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: linux-libre: Add linux-libre 5.17.
* gnu/packages/linux.scm (linux-libre-5.17-version, linux-libre-5.17-gnu-revision, deblob-scripts-5.17, linux-libre-5.17-pristine-source, linux-libre-5.17-source, linux-libre-headers-5.17, linux-libre-5.17): New variables. * 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, gnu/packages/aux-files/linux-libre/5.17-x86_64.conf: New files. * Makefile.am (AUX_FILES): Add them.
This commit is contained in:
parent
50ccffb89e
commit
943d4b775b
6 changed files with 43568 additions and 0 deletions
|
@ -379,6 +379,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.17-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.17-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.17-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.17-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.16-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.16-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/5.16-i686.conf \
|
||||
|
|
10289
gnu/packages/aux-files/linux-libre/5.17-arm.conf
Normal file
10289
gnu/packages/aux-files/linux-libre/5.17-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
10756
gnu/packages/aux-files/linux-libre/5.17-arm64.conf
Normal file
10756
gnu/packages/aux-files/linux-libre/5.17-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
11199
gnu/packages/aux-files/linux-libre/5.17-i686.conf
Normal file
11199
gnu/packages/aux-files/linux-libre/5.17-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
11288
gnu/packages/aux-files/linux-libre/5.17-x86_64.conf
Normal file
11288
gnu/packages/aux-files/linux-libre/5.17-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -359,6 +359,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.17-version "5.17")
|
||||
(define-public linux-libre-5.17-gnu-revision "gnu")
|
||||
(define deblob-scripts-5.17
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-5.17-version
|
||||
linux-libre-5.17-gnu-revision
|
||||
(base32 "08ip5g827f30qzb3j2l19zkbdqv00sij46nbrjg75h5kkasdbfgr")
|
||||
(base32 "0d4wmgirn2b7bv99f8ckfpcagwd2pylzn1sd6jz6d2apdfdspi0g")))
|
||||
(define-public linux-libre-5.17-pristine-source
|
||||
(let ((version linux-libre-5.17-version)
|
||||
(hash (base32 "1cdi43x4c3l4chznh57gm55szycj4wjlxl1dss1ilnfvvmhyypsm")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-5.17)))
|
||||
|
||||
(define-public linux-libre-5.16-version "5.16.17")
|
||||
(define-public linux-libre-5.16-gnu-revision "gnu")
|
||||
(define deblob-scripts-5.16
|
||||
|
@ -495,6 +510,11 @@ (define (source-with-patches source patches)
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-5.17-source
|
||||
(source-with-patches linux-libre-5.17-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-5.16-source
|
||||
(source-with-patches linux-libre-5.16-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
@ -608,6 +628,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.17
|
||||
(make-linux-libre-headers* linux-libre-5.17-version
|
||||
linux-libre-5.17-gnu-revision
|
||||
linux-libre-5.17-source))
|
||||
|
||||
(define-public linux-libre-headers-5.16
|
||||
(make-linux-libre-headers* linux-libre-5.16-version
|
||||
linux-libre-5.16-gnu-revision
|
||||
|
@ -923,6 +948,13 @@ (define* (make-linux-libre* version gnu-revision source supported-systems
|
|||
;;; Generic kernel packages.
|
||||
;;;
|
||||
|
||||
(define-public linux-libre-5.17
|
||||
(make-linux-libre* linux-libre-5.17-version
|
||||
linux-libre-5.17-gnu-revision
|
||||
linux-libre-5.17-source
|
||||
'("x86_64-linux" "i686-linux" "armhf-linux" "aarch64-linux" "riscv64-linux")
|
||||
#:configuration-file kernel-config))
|
||||
|
||||
(define-public linux-libre-5.16
|
||||
(make-linux-libre* linux-libre-5.16-version
|
||||
linux-libre-5.16-gnu-revision
|
||||
|
|
Loading…
Reference in a new issue