Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 3/3] linux: bump _KERNEL_LATEST_VERSION to 6.2
@ 2023-02-27  8:46 Lang Daniel via buildroot
  2023-02-27 14:50 ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Lang Daniel via buildroot @ 2023-02-27  8:46 UTC (permalink / raw)
  To: buildroot@buildroot.org

Signed-off-by: Daniel Lang <d.lang@abatec.at>
---
 linux/Config.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/linux/Config.in b/linux/Config.in
index 5cbef197ab..495fc48997 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -28,8 +28,8 @@ choice
 	prompt "Kernel version"
 
 config BR2_LINUX_KERNEL_LATEST_VERSION
-	bool "Latest version (6.1)"
-	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_1 if BR2_KERNEL_HEADERS_AS_KERNEL
+	bool "Latest version (6.2)"
+	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_2 if BR2_KERNEL_HEADERS_AS_KERNEL
 
 config BR2_LINUX_KERNEL_LATEST_CIP_VERSION
 	bool "Latest CIP SLTS version (5.10.162-cip24)"
@@ -128,7 +128,7 @@ endif
 
 config BR2_LINUX_KERNEL_VERSION
 	string
-	default "6.1.14" if BR2_LINUX_KERNEL_LATEST_VERSION
+	default "6.2.1" if BR2_LINUX_KERNEL_LATEST_VERSION
 	default "5.10.162-cip24" if BR2_LINUX_KERNEL_LATEST_CIP_VERSION
 	default "5.10.162-cip24-rt10" if BR2_LINUX_KERNEL_LATEST_CIP_RT_VERSION
 	default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE \
-- 
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 3/3] linux: bump _KERNEL_LATEST_VERSION to 6.2
  2023-02-27  8:46 [Buildroot] [PATCH 3/3] linux: bump _KERNEL_LATEST_VERSION to 6.2 Lang Daniel via buildroot
@ 2023-02-27 14:50 ` Peter Korsgaard
  2023-03-09 20:38   ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2023-02-27 14:50 UTC (permalink / raw)
  To: Lang Daniel via buildroot; +Cc: Lang Daniel

>>>>> "Lang" == Lang Daniel via buildroot <buildroot@buildroot.org> writes:

 > Signed-off-by: Daniel Lang <d.lang@abatec.at>
 > ---
 >  linux/Config.in | 6 +++---
 >  1 file changed, 3 insertions(+), 3 deletions(-)

 > diff --git a/linux/Config.in b/linux/Config.in
 > index 5cbef197ab..495fc48997 100644
 > --- a/linux/Config.in
 > +++ b/linux/Config.in
 > @@ -28,8 +28,8 @@ choice
 >  	prompt "Kernel version"
 
 >  config BR2_LINUX_KERNEL_LATEST_VERSION
 > -	bool "Latest version (6.1)"
 > -	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_1 if BR2_KERNEL_HEADERS_AS_KERNEL
 > +	bool "Latest version (6.2)"
 > +	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_2 if BR2_KERNEL_HEADERS_AS_KERNEL

Given that 6.1 is a LTS kernel I would prefer to wait with patch 2+3
until after 2023.02 is released (E.G. in a few days).

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 3/3] linux: bump _KERNEL_LATEST_VERSION to 6.2
  2023-02-27 14:50 ` Peter Korsgaard
@ 2023-03-09 20:38   ` Arnout Vandecappelle
  0 siblings, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2023-03-09 20:38 UTC (permalink / raw)
  To: Peter Korsgaard, Lang Daniel via buildroot; +Cc: Lang Daniel



On 27/02/2023 15:50, Peter Korsgaard wrote:
>>>>>> "Lang" == Lang Daniel via buildroot <buildroot@buildroot.org> writes:
> 
>   > Signed-off-by: Daniel Lang <d.lang@abatec.at>
>   > ---
>   >  linux/Config.in | 6 +++---
>   >  1 file changed, 3 insertions(+), 3 deletions(-)
> 
>   > diff --git a/linux/Config.in b/linux/Config.in
>   > index 5cbef197ab..495fc48997 100644
>   > --- a/linux/Config.in
>   > +++ b/linux/Config.in
>   > @@ -28,8 +28,8 @@ choice
>   >  	prompt "Kernel version"
>   
>   >  config BR2_LINUX_KERNEL_LATEST_VERSION
>   > -	bool "Latest version (6.1)"
>   > -	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_1 if BR2_KERNEL_HEADERS_AS_KERNEL
>   > +	bool "Latest version (6.2)"
>   > +	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_2 if BR2_KERNEL_HEADERS_AS_KERNEL
> 
> Given that 6.1 is a LTS kernel I would prefer to wait with patch 2+3
> until after 2023.02 is released (E.G. in a few days).

  I agree about this one, but wouldn't it make sense to add the *option* to 
build 6.2 kernel headers or use them in an external toolchain still make sense 
for 2023.02? I.e. patch 2 without changing the default kernel headers.

  Regards,
  Arnout
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2023-03-09 20:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-27  8:46 [Buildroot] [PATCH 3/3] linux: bump _KERNEL_LATEST_VERSION to 6.2 Lang Daniel via buildroot
2023-02-27 14:50 ` Peter Korsgaard
2023-03-09 20:38   ` Arnout Vandecappelle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox