all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01)
@ 2024-01-01 23:21 Wilko Meyer
  2024-01-01 23:25 ` [bug#68198] [PATCH 1/3] gnu: Update my copyright Wilko Meyer
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Wilko Meyer @ 2024-01-01 23:21 UTC (permalink / raw)
  To: 68198; +Cc: Wilko Meyer, leo

Hi Leo,

There have been two kernel updates today; wasn't able to check the
deblob script hashes as they weren't available yet on the fsfla mirror
for the respective kernel versions (so I think there'll maybe be a v2 of
this patch series as soon as I'm able to check in a few hours).

Happy new year!

Wilko Meyer (3):
  gnu: Update my copyright.
  gnu: linux-libre 6.6: Update to 6.6.9.
  gnu: linux-libre 6.1: Update to 6.1.70.

 gnu/packages/linux.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)


base-commit: 07159bb2bd9ec3c9187bd920bad4b5b0c599fb2f
-- 
2.41.0





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#68198] [PATCH 1/3] gnu: Update my copyright.
  2024-01-01 23:21 [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01) Wilko Meyer
@ 2024-01-01 23:25 ` Wilko Meyer
  2024-01-05 18:16   ` bug#68198: " Leo Famulari
  2024-01-01 23:25 ` [bug#68198] [PATCH 2/3] gnu: linux-libre 6.6: Update to 6.6.9 Wilko Meyer
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: Wilko Meyer @ 2024-01-01 23:25 UTC (permalink / raw)
  To: 68198; +Cc: Wilko Meyer, leo

* gnu/packages/linux.scm: Update copyright header.

Change-Id: Idaa9c90e05eba9d0f417f11e86a80bf8119a7a65
---
 gnu/packages/linux.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 1c359cb3003..18fb2ffeabd 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -76,7 +76,7 @@
 ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
 ;;; Copyright © 2023 dan <i@dan.games>
 ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
-;;; Copyright © 2023 Wilko Meyer <w@wmeyer.eu>
+;;; Copyright © 2023, 2024 Wilko Meyer <w@wmeyer.eu>
 ;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
 ;;;
 ;;; This file is part of GNU Guix.
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#68198] [PATCH 2/3] gnu: linux-libre 6.6: Update to 6.6.9.
  2024-01-01 23:21 [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01) Wilko Meyer
  2024-01-01 23:25 ` [bug#68198] [PATCH 1/3] gnu: Update my copyright Wilko Meyer
@ 2024-01-01 23:25 ` Wilko Meyer
  2024-01-01 23:25 ` [bug#68198] [PATCH 3/3] gnu: linux-libre 6.1: Update to 6.1.70 Wilko Meyer
  2024-01-02 23:05 ` [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01) Leo Famulari
  3 siblings, 0 replies; 6+ messages in thread
From: Wilko Meyer @ 2024-01-01 23:25 UTC (permalink / raw)
  To: 68198; +Cc: Wilko Meyer, leo

* gnu/packages/linux.scm (linux-libre-6.6-version): Update to 6.6.9.
(linux-libre-6.6-pristine-source): Update hash.

Change-Id: Id68891618879662b08e539f684482c4a8ef02541
---
 gnu/packages/linux.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 18fb2ffeabd..d4cd24bcf67 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -494,7 +494,7 @@ (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-6.6-version "6.6.8")
+(define-public linux-libre-6.6-version "6.6.9")
 (define-public linux-libre-6.6-gnu-revision "gnu")
 (define deblob-scripts-6.6
   (linux-libre-deblob-scripts
@@ -504,7 +504,7 @@ (define deblob-scripts-6.6
    (base32 "1hg3ck1j8288fhlhcvhgs1zzwh3i62nfvphw7x3vsaqr75kiwbjp")))
 (define-public linux-libre-6.6-pristine-source
   (let ((version linux-libre-6.6-version)
-        (hash (base32 "05i4ayj9wyjkd1s8ixx7bxwcyagqyx8rhj1zvbc3cjqyw4sc8djh")))
+        (hash (base32 "1cs8ym3yq9czjx6sbxpmn16l6a577mc4c1ff7nk1p2gw1jpnbg4f")))
    (make-linux-libre-source version
                             (%upstream-linux-source version hash)
                             deblob-scripts-6.6)))
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#68198] [PATCH 3/3] gnu: linux-libre 6.1: Update to 6.1.70.
  2024-01-01 23:21 [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01) Wilko Meyer
  2024-01-01 23:25 ` [bug#68198] [PATCH 1/3] gnu: Update my copyright Wilko Meyer
  2024-01-01 23:25 ` [bug#68198] [PATCH 2/3] gnu: linux-libre 6.6: Update to 6.6.9 Wilko Meyer
@ 2024-01-01 23:25 ` Wilko Meyer
  2024-01-02 23:05 ` [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01) Leo Famulari
  3 siblings, 0 replies; 6+ messages in thread
From: Wilko Meyer @ 2024-01-01 23:25 UTC (permalink / raw)
  To: 68198; +Cc: Wilko Meyer, leo

* gnu/packages/linux.scm (linux-libre-6.1-version): Update to 6.1.70.
(linux-libre-6.1-pristine-source): Update hash.

Change-Id: I5bcebd56f3b4d6cc7ad7419264c78c56c6f3ff95
---
 gnu/packages/linux.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index d4cd24bcf67..8c83b1f597b 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -512,7 +512,7 @@ (define-public linux-libre-6.6-pristine-source
 ;; The "longterm" kernels — the older releases with long-term upstream support.
 ;; Here are the support timelines:
 ;; <https://www.kernel.org/category/releases.html>
-(define-public linux-libre-6.1-version "6.1.69")
+(define-public linux-libre-6.1-version "6.1.70")
 (define-public linux-libre-6.1-gnu-revision "gnu")
 (define deblob-scripts-6.1
   (linux-libre-deblob-scripts
@@ -522,7 +522,7 @@ (define deblob-scripts-6.1
    (base32 "1hdibv43xbn1lv83i6qjgfmf1bvqxvq17fryfsq4r4sjgs9212js")))
 (define-public linux-libre-6.1-pristine-source
   (let ((version linux-libre-6.1-version)
-        (hash (base32 "0hdm28k49kmy9r96hckps0bvvaq9m06l72n8ih305rccs6a2cgby")))
+        (hash (base32 "1vxgardfm2fi4c7zkxpljqicllfqqnp835a9lyb7dh2nchk6a4zd")))
    (make-linux-libre-source version
                             (%upstream-linux-source version hash)
                             deblob-scripts-6.1)))
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01)
  2024-01-01 23:21 [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01) Wilko Meyer
                   ` (2 preceding siblings ...)
  2024-01-01 23:25 ` [bug#68198] [PATCH 3/3] gnu: linux-libre 6.1: Update to 6.1.70 Wilko Meyer
@ 2024-01-02 23:05 ` Leo Famulari
  3 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2024-01-02 23:05 UTC (permalink / raw)
  To: Wilko Meyer; +Cc: 68198

On Tue, Jan 02, 2024 at 12:21:10AM +0100, Wilko Meyer wrote:
> There have been two kernel updates today; wasn't able to check the
> deblob script hashes as they weren't available yet on the fsfla mirror
> for the respective kernel versions (so I think there'll maybe be a v2 of
> this patch series as soon as I'm able to check in a few hours).
> 
> Happy new year!

Happy new year Wilko!

I updated the deblob-scripts, as one of the two components has indeed
changed, and pushed to kernel-updates:

https://ci.guix.gnu.org/eval/1021550




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#68198: [PATCH 1/3] gnu: Update my copyright.
  2024-01-01 23:25 ` [bug#68198] [PATCH 1/3] gnu: Update my copyright Wilko Meyer
@ 2024-01-05 18:16   ` Leo Famulari
  0 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2024-01-05 18:16 UTC (permalink / raw)
  To: Wilko Meyer; +Cc: 68198-done

On Tue, Jan 02, 2024 at 12:25:10AM +0100, Wilko Meyer wrote:
> * gnu/packages/linux.scm: Update copyright header.

Thanks! I pushed the series as 9abca269ddc5cd1b689ec6137e6def2402ccce19




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-01-05 18:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-01 23:21 [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01) Wilko Meyer
2024-01-01 23:25 ` [bug#68198] [PATCH 1/3] gnu: Update my copyright Wilko Meyer
2024-01-05 18:16   ` bug#68198: " Leo Famulari
2024-01-01 23:25 ` [bug#68198] [PATCH 2/3] gnu: linux-libre 6.6: Update to 6.6.9 Wilko Meyer
2024-01-01 23:25 ` [bug#68198] [PATCH 3/3] gnu: linux-libre 6.1: Update to 6.1.70 Wilko Meyer
2024-01-02 23:05 ` [bug#68198] [PATCH 0/3] linux-libre kernel updates (2024-01-01) Leo Famulari

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.