mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add linux-libre 6.6.1.
* gnu/packages/linux.scm (linux-libre-6.6-version, linux-libre-6.6-gnu-revision, deblob-scripts-6.6, linux-libre-6.6-pristine-source, linux-libre-6.5-source, linux-libre-headers-6.6, linux-libre-6.6): New variables. * gnu/packages/aux-files/linux-libre/6.6-arm.conf, gnu/packages/aux-files/linux-libre/6.6-arm64.conf, gnu/packages/aux-files/linux-libre/6.6-i686.conf, gnu/packages/aux-files/linux-libre/6.6-x86_64.conf: New files. * Makefile.am (AUX_FILES): Add them. Change-Id: I37b2b98b8a2ec745137e92380f34e69082c5e662 Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
8074235a7e
commit
b817d261e2
6 changed files with 46365 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
||||||
# Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
|
# Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
|
||||||
# Copyright © 2021 Andrew Tropin <andrew@trop.in>
|
# Copyright © 2021 Andrew Tropin <andrew@trop.in>
|
||||||
# Copyright © 2023 Clément Lassieur <clement@lassieur.org>
|
# Copyright © 2023 Clément Lassieur <clement@lassieur.org>
|
||||||
|
# Copyright © 2023 Wilko Meyer <w@wmeyer.eu>
|
||||||
#
|
#
|
||||||
# This file is part of GNU Guix.
|
# This file is part of GNU Guix.
|
||||||
#
|
#
|
||||||
|
@ -415,6 +416,10 @@ AUX_FILES = \
|
||||||
gnu/packages/aux-files/chromium/master-preferences.json \
|
gnu/packages/aux-files/chromium/master-preferences.json \
|
||||||
gnu/packages/aux-files/emacs/guix-emacs.el \
|
gnu/packages/aux-files/emacs/guix-emacs.el \
|
||||||
gnu/packages/aux-files/guix.vim \
|
gnu/packages/aux-files/guix.vim \
|
||||||
|
gnu/packages/aux-files/linux-libre/6.6-arm.conf \
|
||||||
|
gnu/packages/aux-files/linux-libre/6.6-arm64.conf \
|
||||||
|
gnu/packages/aux-files/linux-libre/6.6-i686.conf \
|
||||||
|
gnu/packages/aux-files/linux-libre/6.6-x86_64.conf \
|
||||||
gnu/packages/aux-files/linux-libre/6.5-arm.conf \
|
gnu/packages/aux-files/linux-libre/6.5-arm.conf \
|
||||||
gnu/packages/aux-files/linux-libre/6.5-arm64.conf \
|
gnu/packages/aux-files/linux-libre/6.5-arm64.conf \
|
||||||
gnu/packages/aux-files/linux-libre/6.5-i686.conf \
|
gnu/packages/aux-files/linux-libre/6.5-i686.conf \
|
||||||
|
|
10893
gnu/packages/aux-files/linux-libre/6.6-arm.conf
Normal file
10893
gnu/packages/aux-files/linux-libre/6.6-arm.conf
Normal file
File diff suppressed because it is too large
Load diff
11639
gnu/packages/aux-files/linux-libre/6.6-arm64.conf
Normal file
11639
gnu/packages/aux-files/linux-libre/6.6-arm64.conf
Normal file
File diff suppressed because it is too large
Load diff
11793
gnu/packages/aux-files/linux-libre/6.6-i686.conf
Normal file
11793
gnu/packages/aux-files/linux-libre/6.6-i686.conf
Normal file
File diff suppressed because it is too large
Load diff
12002
gnu/packages/aux-files/linux-libre/6.6-x86_64.conf
Normal file
12002
gnu/packages/aux-files/linux-libre/6.6-x86_64.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -493,6 +493,21 @@ (define (%upstream-linux-source version hash)
|
||||||
;; The current "stable" kernels. That is, the most recently released major
|
;; The current "stable" kernels. That is, the most recently released major
|
||||||
;; versions that are still supported upstream.
|
;; versions that are still supported upstream.
|
||||||
|
|
||||||
|
(define-public linux-libre-6.6-version "6.6.1")
|
||||||
|
(define-public linux-libre-6.6-gnu-revision "gnu")
|
||||||
|
(define deblob-scripts-6.6
|
||||||
|
(linux-libre-deblob-scripts
|
||||||
|
linux-libre-6.6-version
|
||||||
|
linux-libre-6.6-gnu-revision
|
||||||
|
(base32 "0g8m0rb15b0231dv8ji456s75a67szsaim71may3yprplycz6pav")
|
||||||
|
(base32 "1hg3ck1j8288fhlhcvhgs1zzwh3i62nfvphw7x3vsaqr75kiwbjp")))
|
||||||
|
(define-public linux-libre-6.6-pristine-source
|
||||||
|
(let ((version linux-libre-6.6-version)
|
||||||
|
(hash (base32 "0d42b1hbvv9w3y3q4wydr6il0g5a823n54a06p4p5vcpgkadf7ns")))
|
||||||
|
(make-linux-libre-source version
|
||||||
|
(%upstream-linux-source version hash)
|
||||||
|
deblob-scripts-6.6)))
|
||||||
|
|
||||||
(define-public linux-libre-6.5-version "6.5.11")
|
(define-public linux-libre-6.5-version "6.5.11")
|
||||||
(define-public linux-libre-6.5-gnu-revision "gnu")
|
(define-public linux-libre-6.5-gnu-revision "gnu")
|
||||||
(define deblob-scripts-6.5
|
(define deblob-scripts-6.5
|
||||||
|
@ -629,6 +644,11 @@ (define (source-with-patches source patches)
|
||||||
(patches (append (origin-patches source)
|
(patches (append (origin-patches source)
|
||||||
patches))))
|
patches))))
|
||||||
|
|
||||||
|
(define-public linux-libre-6.6-source
|
||||||
|
(source-with-patches linux-libre-6.6-pristine-source
|
||||||
|
(list %boot-logo-patch
|
||||||
|
%linux-libre-arm-export-__sync_icache_dcache-patch)))
|
||||||
|
|
||||||
(define-public linux-libre-6.5-source
|
(define-public linux-libre-6.5-source
|
||||||
(source-with-patches linux-libre-6.5-pristine-source
|
(source-with-patches linux-libre-6.5-pristine-source
|
||||||
(list %boot-logo-patch
|
(list %boot-logo-patch
|
||||||
|
@ -748,6 +768,11 @@ (define (make-linux-libre-headers* version gnu-revision source)
|
||||||
(description "Headers of the Linux-Libre kernel.")
|
(description "Headers of the Linux-Libre kernel.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public linux-libre-headers-6.6
|
||||||
|
(make-linux-libre-headers* linux-libre-6.6-version
|
||||||
|
linux-libre-6.6-gnu-revision
|
||||||
|
linux-libre-6.6-source))
|
||||||
|
|
||||||
(define-public linux-libre-headers-6.5
|
(define-public linux-libre-headers-6.5
|
||||||
(make-linux-libre-headers* linux-libre-6.5-version
|
(make-linux-libre-headers* linux-libre-6.5-version
|
||||||
linux-libre-6.5-gnu-revision
|
linux-libre-6.5-gnu-revision
|
||||||
|
@ -1092,6 +1117,14 @@ (define* (make-linux-libre* version gnu-revision source supported-systems
|
||||||
;;; Generic kernel packages.
|
;;; Generic kernel packages.
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
|
(define-public linux-libre-6.6
|
||||||
|
(make-linux-libre* linux-libre-6.6-version
|
||||||
|
linux-libre-6.6-gnu-revision
|
||||||
|
linux-libre-6.6-source
|
||||||
|
'("x86_64-linux" "i686-linux" "armhf-linux"
|
||||||
|
"aarch64-linux" "powerpc64le-linux" "riscv64-linux")
|
||||||
|
#:configuration-file kernel-config))
|
||||||
|
|
||||||
(define-public linux-libre-6.5
|
(define-public linux-libre-6.5
|
||||||
(make-linux-libre* linux-libre-6.5-version
|
(make-linux-libre* linux-libre-6.5-version
|
||||||
linux-libre-6.5-gnu-revision
|
linux-libre-6.5-gnu-revision
|
||||||
|
|
Loading…
Reference in a new issue