mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: Add linux-libre 6.17.
* gnu/packages/linux.scm (linux-libre-6.17-version, linux-libre-6.17-gnu-revision, deblob-scripts-6.17, linux-libre-6.17-pristine-source, linux-libre-6.17-source, linux-libre-headers-6.17): New variables. (linux-libre-headers-latest): Use linux-libre-headers-6.17. * gnu/packages/aux-files/linux-libre/6.17-arm64.conf, gnu/packages/aux-files/linux-libre/6.17-i686.conf, gnu/packages/aux-files/linux-libre/6.17-riscv.conf, gnu/packages/aux-files/linux-libre/6.17-x86_64.conf: New files. * Makefile.am (AUX_FILES): Add them. Co-authored-by: Dariqq <dariqq@posteo.net> Change-Id: I52d2bc9114a948d31726d2da2a5916fc607dcdd6
This commit is contained in:
parent
2bf4dcfa96
commit
aeb2454a62
6 changed files with 46756 additions and 1 deletions
|
|
@ -450,6 +450,10 @@ AUX_FILES = \
|
|||
gnu/packages/aux-files/findclass.php \
|
||||
gnu/packages/aux-files/guix.vim \
|
||||
gnu/packages/aux-files/guix-nvim.vim \
|
||||
gnu/packages/aux-files/linux-libre/6.17-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.17-i686.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.17-riscv.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.17-x86_64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.16-arm.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.16-arm64.conf \
|
||||
gnu/packages/aux-files/linux-libre/6.16-riscv.conf \
|
||||
|
|
|
|||
12703
gnu/packages/aux-files/linux-libre/6.17-arm64.conf
Normal file
12703
gnu/packages/aux-files/linux-libre/6.17-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
12389
gnu/packages/aux-files/linux-libre/6.17-i686.conf
Normal file
12389
gnu/packages/aux-files/linux-libre/6.17-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
8901
gnu/packages/aux-files/linux-libre/6.17-riscv.conf
Normal file
8901
gnu/packages/aux-files/linux-libre/6.17-riscv.conf
Normal file
File diff suppressed because it is too large
Load diff
12725
gnu/packages/aux-files/linux-libre/6.17-x86_64.conf
Normal file
12725
gnu/packages/aux-files/linux-libre/6.17-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -529,6 +529,21 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."
|
|||
;; The current "stable" kernels. That is, the most recently released major
|
||||
;; versions that are still supported upstream.
|
||||
|
||||
(define-public linux-libre-6.17-version "6.17.5")
|
||||
(define-public linux-libre-6.17-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.17
|
||||
(linux-libre-deblob-scripts
|
||||
linux-libre-6.17-version
|
||||
linux-libre-6.17-gnu-revision
|
||||
(base32 "15qc7p6axs5l9syizbcbnksw8lxm8nnlcrl3q4k8cbs3lrxacpjv")
|
||||
(base32 "14fypjidk49l0799dbi1pacy37ks94k0bs38cck2y4glxfpbfqr6")))
|
||||
(define-public linux-libre-6.17-pristine-source
|
||||
(let ((version linux-libre-6.17-version)
|
||||
(hash (base32 "1kibm4b3dvncw8dzxllxiza0923q6f2xlsng4gkln5n2x4vaypy0")))
|
||||
(make-linux-libre-source version
|
||||
(%upstream-linux-source version hash)
|
||||
deblob-scripts-6.17)))
|
||||
|
||||
(define-public linux-libre-6.16-version "6.16.12")
|
||||
(define-public linux-libre-6.16-gnu-revision "gnu")
|
||||
(define deblob-scripts-6.16
|
||||
|
|
@ -666,6 +681,11 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."
|
|||
(patches (append (origin-patches source)
|
||||
patches))))
|
||||
|
||||
(define-public linux-libre-6.17-source
|
||||
(source-with-patches linux-libre-6.17-pristine-source
|
||||
(list %boot-logo-patch
|
||||
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||
|
||||
(define-public linux-libre-6.16-source
|
||||
(source-with-patches linux-libre-6.16-pristine-source
|
||||
(list %boot-logo-patch
|
||||
|
|
@ -792,6 +812,11 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."
|
|||
(description "Headers of the Linux-Libre kernel.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public linux-libre-headers-6.17
|
||||
(make-linux-libre-headers* linux-libre-6.17-version
|
||||
linux-libre-6.17-gnu-revision
|
||||
linux-libre-6.17-source))
|
||||
|
||||
(define-public linux-libre-headers-6.16
|
||||
(make-linux-libre-headers* linux-libre-6.16-version
|
||||
linux-libre-6.16-gnu-revision
|
||||
|
|
@ -837,7 +862,7 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."
|
|||
;; 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.16)
|
||||
(define-public linux-libre-headers-latest linux-libre-headers-6.17)
|
||||
|
||||
|
||||
;;;
|
||||
|
|
@ -1164,6 +1189,14 @@ Linux kernel. It has been modified to remove all non-free binary blobs.")
|
|||
;;; Generic kernel packages.
|
||||
;;;
|
||||
|
||||
(define-public linux-libre-6.17
|
||||
(make-linux-libre* linux-libre-6.17-version
|
||||
linux-libre-6.17-gnu-revision
|
||||
linux-libre-6.17-source
|
||||
'("x86_64-linux" "i686-linux" "armhf-linux"
|
||||
"aarch64-linux" "powerpc64le-linux" "riscv64-linux")
|
||||
#:configuration-file kernel-config))
|
||||
|
||||
(define-public linux-libre-6.16
|
||||
(make-linux-libre* linux-libre-6.16-version
|
||||
linux-libre-6.16-gnu-revision
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue