summaryrefslogtreecommitdiff
path: root/gnu/packages/linux.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r--gnu/packages/linux.scm34
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 2f5bf67ab8..469a6f0c2a 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -529,6 +529,23 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."
"linux-" version ".tar.xz"))
(sha256 hash)))
+;; The current "mainline" kernel.
+
+(define-public linux-libre-7.0-version "7.0.3")
+(define-public linux-libre-7.0-gnu-revision "gnu")
+(define deblob-scripts-7.0
+ (linux-libre-deblob-scripts
+ linux-libre-7.0-version
+ linux-libre-7.0-gnu-revision
+ (base32 "0pqhhkpq61rvdiyas28x7kclsz1iribzwsyf81gbic56ci4z2ldv")
+ (base32 "0a7572zw5y3k4gs4p3h5w0s9bhd63pdjxz6vxbr96sq6r8b6k02n")))
+(define-public linux-libre-7.0-pristine-source
+ (let ((version linux-libre-7.0-version)
+ (hash (base32 "074zjl0v901a9hafgpcxyyd395qs7y4kr4fcpgg3ssc8ayzsvv8b")))
+ (make-linux-libre-source version
+ (%upstream-linux-source version hash)
+ deblob-scripts-7.0)))
+
;; The current "stable" kernels. That is, the most recently released major
;; versions that are still supported upstream.
@@ -669,6 +686,10 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS."
(patches (append (origin-patches source)
patches))))
+(define-public linux-libre-7.0-source
+ (source-with-patches linux-libre-7.0-pristine-source
+ (list %linux-libre-arm-export-__sync_icache_dcache-patch)))
+
(define-public linux-libre-6.19-source
(source-with-patches linux-libre-6.19-pristine-source
(list %boot-logo-patch
@@ -791,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-7.0
+ (make-linux-libre-headers* linux-libre-7.0-version
+ linux-libre-7.0-gnu-revision
+ linux-libre-7.0-source))
+
(define-public linux-libre-headers-6.19
(make-linux-libre-headers* linux-libre-6.19-version
linux-libre-6.19-gnu-revision
@@ -1177,6 +1203,14 @@ Linux kernel. It has been modified to remove all non-free binary blobs.")
;;; Generic kernel packages.
;;;
+(define-public linux-libre-7.0
+ (make-linux-libre* linux-libre-7.0-version
+ linux-libre-7.0-gnu-revision
+ linux-libre-7.0-source
+ '("x86_64-linux" "i686-linux" "armhf-linux"
+ "aarch64-linux" "powerpc64le-linux" "riscv64-linux")
+ #:configuration-file kernel-config))
+
(define-public linux-libre-6.19
(make-linux-libre* linux-libre-6.19-version
linux-libre-6.19-gnu-revision