unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60663] [PATCH] gnu: linux-libre: Update to 6.1.
@ 2023-01-08 20:50 Leo Famulari
  2023-01-11 19:17 ` Maxim Cournoyer
  0 siblings, 1 reply; 6+ messages in thread
From: Leo Famulari @ 2023-01-08 20:50 UTC (permalink / raw)
  To: 60663

* gnu/packages/linux.scm (linux-libre-version, linux-libre-gnu-revision,
linux-libre-pristine-source, linux-libre-source, linux-libre): Use linux-libre
6.1.
---
 gnu/packages/linux.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 516f8c8507..933af66904 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1089,11 +1089,11 @@ (define-public linux-libre-6.0
                        "aarch64-linux" "powerpc64le-linux" "riscv64-linux")
                      #:configuration-file kernel-config))
 
-(define-public linux-libre-version         linux-libre-6.0-version)
-(define-public linux-libre-gnu-revision    linux-libre-6.0-gnu-revision)
-(define-public linux-libre-pristine-source linux-libre-6.0-pristine-source)
-(define-public linux-libre-source          linux-libre-6.0-source)
-(define-public linux-libre                 linux-libre-6.0)
+(define-public linux-libre-version         linux-libre-6.1-version)
+(define-public linux-libre-gnu-revision    linux-libre-6.1-gnu-revision)
+(define-public linux-libre-pristine-source linux-libre-6.1-pristine-source)
+(define-public linux-libre-source          linux-libre-6.1-source)
+(define-public linux-libre                 linux-libre-6.1)
 
 (define-public linux-libre-5.15
   (make-linux-libre* linux-libre-5.15-version
-- 
2.38.1





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

* [bug#60663] [PATCH] gnu: linux-libre: Update to 6.1.
  2023-01-08 20:50 [bug#60663] [PATCH] gnu: linux-libre: Update to 6.1 Leo Famulari
@ 2023-01-11 19:17 ` Maxim Cournoyer
  2023-01-12  1:03   ` Leo Famulari
  0 siblings, 1 reply; 6+ messages in thread
From: Maxim Cournoyer @ 2023-01-11 19:17 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 60663

Hi Leo,

Leo Famulari <leo@famulari.name> writes:

> * gnu/packages/linux.scm (linux-libre-version, linux-libre-gnu-revision,
> linux-libre-pristine-source, linux-libre-source, linux-libre): Use linux-libre
> 6.1.
> ---
>  gnu/packages/linux.scm | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
> index 516f8c8507..933af66904 100644
> --- a/gnu/packages/linux.scm
> +++ b/gnu/packages/linux.scm
> @@ -1089,11 +1089,11 @@ (define-public linux-libre-6.0
>                         "aarch64-linux" "powerpc64le-linux" "riscv64-linux")
>                       #:configuration-file kernel-config))
>  
> -(define-public linux-libre-version         linux-libre-6.0-version)
> -(define-public linux-libre-gnu-revision    linux-libre-6.0-gnu-revision)
> -(define-public linux-libre-pristine-source linux-libre-6.0-pristine-source)
> -(define-public linux-libre-source          linux-libre-6.0-source)
> -(define-public linux-libre                 linux-libre-6.0)
> +(define-public linux-libre-version         linux-libre-6.1-version)
> +(define-public linux-libre-gnu-revision    linux-libre-6.1-gnu-revision)
> +(define-public linux-libre-pristine-source linux-libre-6.1-pristine-source)
> +(define-public linux-libre-source          linux-libre-6.1-source)
> +(define-public linux-libre                 linux-libre-6.1)

I get from this that the pristine source and deblob scripts had already
been added?

What about the changes to the kconfig files; don't they change between
releases?

-- 
Thanks,
Maxim




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

* [bug#60663] [PATCH] gnu: linux-libre: Update to 6.1.
  2023-01-11 19:17 ` Maxim Cournoyer
@ 2023-01-12  1:03   ` Leo Famulari
  2023-01-12  2:46     ` Maxim Cournoyer
  0 siblings, 1 reply; 6+ messages in thread
From: Leo Famulari @ 2023-01-12  1:03 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 60663

On Wed, Jan 11, 2023 at 02:17:06PM -0500, Maxim Cournoyer wrote:
> I get from this that the pristine source and deblob scripts had already
> been added?
> 
> What about the changes to the kconfig files; don't they change between
> releases?

Linux-libre 6.1, and everything that's necessary to use it, was added in
commit cfce55bf4f232791f4341665a01c4cb873f0f60d

This patch would make it the default version.




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

* [bug#60663] [PATCH] gnu: linux-libre: Update to 6.1.
  2023-01-12  1:03   ` Leo Famulari
@ 2023-01-12  2:46     ` Maxim Cournoyer
  2023-01-13  5:49       ` bug#60663: " Leo Famulari
  0 siblings, 1 reply; 6+ messages in thread
From: Maxim Cournoyer @ 2023-01-12  2:46 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 60663

Hi,

Leo Famulari <leo@famulari.name> writes:

> On Wed, Jan 11, 2023 at 02:17:06PM -0500, Maxim Cournoyer wrote:
>> I get from this that the pristine source and deblob scripts had already
>> been added?
>> 
>> What about the changes to the kconfig files; don't they change between
>> releases?
>
> Linux-libre 6.1, and everything that's necessary to use it, was added in
> commit cfce55bf4f232791f4341665a01c4cb873f0f60d
>
> This patch would make it the default version.

Thanks for bringing me up to speed.

I'm stuck on using 5.15 myself due to #59361, so can't comment on the
well functioning of linux-libre 6.1 just yet, but I trust that it
should, so unless someone else saw issues using it, I think you can go
ahead and apply the change.

-- 
Thanks,
Maxim




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

* bug#60663: [PATCH] gnu: linux-libre: Update to 6.1.
  2023-01-12  2:46     ` Maxim Cournoyer
@ 2023-01-13  5:49       ` Leo Famulari
  2023-01-13 18:20         ` [bug#60663] " Maxim Cournoyer
  0 siblings, 1 reply; 6+ messages in thread
From: Leo Famulari @ 2023-01-13  5:49 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 60663-done

On Wed, Jan 11, 2023 at 09:46:29PM -0500, Maxim Cournoyer wrote:
> I'm stuck on using 5.15 myself due to #59361, so can't comment on the
> well functioning of linux-libre 6.1 just yet, but I trust that it
> should, so unless someone else saw issues using it, I think you can go
> ahead and apply the change.

Okay, pushed as ce8a34bc9ab89f31f107383ba791954864aed372

Do you know if #59361 has been reported upstream?




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

* [bug#60663] [PATCH] gnu: linux-libre: Update to 6.1.
  2023-01-13  5:49       ` bug#60663: " Leo Famulari
@ 2023-01-13 18:20         ` Maxim Cournoyer
  0 siblings, 0 replies; 6+ messages in thread
From: Maxim Cournoyer @ 2023-01-13 18:20 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 60663-done

Hi,

Leo Famulari <leo@famulari.name> writes:

> On Wed, Jan 11, 2023 at 09:46:29PM -0500, Maxim Cournoyer wrote:
>> I'm stuck on using 5.15 myself due to #59361, so can't comment on the
>> well functioning of linux-libre 6.1 just yet, but I trust that it
>> should, so unless someone else saw issues using it, I think you can go
>> ahead and apply the change.
>
> Okay, pushed as ce8a34bc9ab89f31f107383ba791954864aed372
>
> Do you know if #59361 has been reported upstream?

Yes, I've even bisected it and found the commit responsible for it [0],
but it seems to affect only my particular version of that card, so it's
niche and unlikely to gather much interest.  There's also some details
on how I proceded to do the regression tests at
https://issues.guix.gnu.org/59361

[0] https://gitlab.freedesktop.org/drm/nouveau/-/issues/192

-- 
Thanks,
Maxim




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

end of thread, other threads:[~2023-01-13 18:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-08 20:50 [bug#60663] [PATCH] gnu: linux-libre: Update to 6.1 Leo Famulari
2023-01-11 19:17 ` Maxim Cournoyer
2023-01-12  1:03   ` Leo Famulari
2023-01-12  2:46     ` Maxim Cournoyer
2023-01-13  5:49       ` bug#60663: " Leo Famulari
2023-01-13 18:20         ` [bug#60663] " Maxim Cournoyer

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).