Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series
@ 2024-08-03 10:46 Bernd Kuhls
  2024-08-03 10:46 ` [Buildroot] [PATCH 2/2] package/linux-headers: drop 6.9.x option Bernd Kuhls
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2024-08-03 10:46 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 linux/Config.in                      | 2 +-
 linux/linux.hash                     | 6 +++---
 package/linux-headers/Config.in.host | 6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/linux/Config.in b/linux/Config.in
index 4bdca6fafe..429a7eabef 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -134,7 +134,7 @@ config BR2_LINUX_KERNEL_CUSTOM_REPO_GIT_SUBMODULES
 
 config BR2_LINUX_KERNEL_VERSION
 	string
-	default "6.10.2" if BR2_LINUX_KERNEL_LATEST_VERSION
+	default "6.10.3" 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 \
diff --git a/linux/linux.hash b/linux/linux.hash
index d1d0132c96..b6ab8b3267 100644
--- a/linux/linux.hash
+++ b/linux/linux.hash
@@ -1,8 +1,8 @@
 # From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
-sha256  73d8520dd9cba5acfc5e7208e76b35d9740b8aae38210a9224e32ec4c0d29b70  linux-6.10.2.tar.xz
+sha256  fa5f22fd67dd05812d39dca579320c493048e26c4a556048a12385e7ae6fc698  linux-6.10.3.tar.xz
 sha256  5ae7cc4e0e2f6b9ba630f643985ba0522c7d5e5b9571ba478a3cb513edd4cf22  linux-6.9.12.tar.xz
-sha256  0ad83b1a1a780a1aad948d55aa55ee63c50c626f2d46910b9d2180028d100a5e  linux-6.6.43.tar.xz
-sha256  1ba5f93b411ead7587fe48b2eec6c656f6796d31f5e406d236913c77512497ec  linux-6.1.102.tar.xz
+sha256  93218296934915636fe6ba08e125948424cc270fd8948502c0ab91087a9fccd8  linux-6.6.44.tar.xz
+sha256  5eb4706f898f50881552ff5146d892132d3ffc5298033bffe27087d3a44c4573  linux-6.1.103.tar.xz
 # From https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
 sha256  ec6098faed64b8a47ba1772e812a6eb444385f7aa3c60d3e4739ab2fd3b29186  linux-5.15.164.tar.xz
 sha256  ca09d86a6b79706c33382d3f8606f476eb07918417a87fb1815f6a4aa81f2ba1  linux-5.10.223.tar.xz
diff --git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index d745e31155..e235689700 100644
--- a/package/linux-headers/Config.in.host
+++ b/package/linux-headers/Config.in.host
@@ -431,10 +431,10 @@ config BR2_DEFAULT_KERNEL_HEADERS
 	default "5.4.281"	if BR2_KERNEL_HEADERS_5_4
 	default "5.10.223"	if BR2_KERNEL_HEADERS_5_10
 	default "5.15.164"	if BR2_KERNEL_HEADERS_5_15
-	default "6.1.102"	if BR2_KERNEL_HEADERS_6_1
-	default "6.6.43"	if BR2_KERNEL_HEADERS_6_6
+	default "6.1.103"	if BR2_KERNEL_HEADERS_6_1
+	default "6.6.44"	if BR2_KERNEL_HEADERS_6_6
 	default "6.9.12"	if BR2_KERNEL_HEADERS_6_9
-	default "6.10.2"	if BR2_KERNEL_HEADERS_6_10
+	default "6.10.3"	if BR2_KERNEL_HEADERS_6_10
 	default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
 	default "custom"	if BR2_KERNEL_HEADERS_CUSTOM_TARBALL
 	default BR2_KERNEL_HEADERS_CUSTOM_REPO_VERSION \
-- 
2.39.2

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

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

* [Buildroot] [PATCH 2/2] package/linux-headers: drop 6.9.x option
  2024-08-03 10:46 [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series Bernd Kuhls
@ 2024-08-03 10:46 ` Bernd Kuhls
  2024-08-03 18:29 ` [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series Thomas Petazzoni via buildroot
  2024-09-03 18:30 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Bernd Kuhls @ 2024-08-03 10:46 UTC (permalink / raw)
  To: buildroot

The 6.9.x series is now EOL upstream, so drop the linux-headers option
and add legacy handling for it.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 Config.in.legacy                     | 7 +++++++
 linux/linux.hash                     | 1 -
 package/linux-headers/Config.in.host | 5 -----
 3 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/Config.in.legacy b/Config.in.legacy
index a746f682cc..94092d38f4 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -146,6 +146,13 @@ endif
 
 comment "Legacy options removed in 2024.08"
 
+config BR2_KERNEL_HEADERS_6_9
+	bool "kernel headers version 6.9.x are no longer supported"
+	select BR2_LEGACY
+	help
+	  Version 6.9.x of the Linux kernel headers are no longer
+	  maintained upstream and are now removed.
+
 config BR2_x86_knightslanding
 	bool "knightslanding x86 architecture support dropped"
 	select BR2_LEGACY
diff --git a/linux/linux.hash b/linux/linux.hash
index b6ab8b3267..4e05f4a765 100644
--- a/linux/linux.hash
+++ b/linux/linux.hash
@@ -1,6 +1,5 @@
 # From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
 sha256  fa5f22fd67dd05812d39dca579320c493048e26c4a556048a12385e7ae6fc698  linux-6.10.3.tar.xz
-sha256  5ae7cc4e0e2f6b9ba630f643985ba0522c7d5e5b9571ba478a3cb513edd4cf22  linux-6.9.12.tar.xz
 sha256  93218296934915636fe6ba08e125948424cc270fd8948502c0ab91087a9fccd8  linux-6.6.44.tar.xz
 sha256  5eb4706f898f50881552ff5146d892132d3ffc5298033bffe27087d3a44c4573  linux-6.1.103.tar.xz
 # From https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
diff --git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index e235689700..83b8d1267e 100644
--- a/package/linux-headers/Config.in.host
+++ b/package/linux-headers/Config.in.host
@@ -48,10 +48,6 @@ config BR2_KERNEL_HEADERS_6_6
 	bool "Linux 6.6.x kernel headers"
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
 
-config BR2_KERNEL_HEADERS_6_9
-	bool "Linux 6.9.x kernel headers"
-	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_9
-
 config BR2_KERNEL_HEADERS_6_10
 	bool "Linux 6.10.x kernel headers"
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10
@@ -433,7 +429,6 @@ config BR2_DEFAULT_KERNEL_HEADERS
 	default "5.15.164"	if BR2_KERNEL_HEADERS_5_15
 	default "6.1.103"	if BR2_KERNEL_HEADERS_6_1
 	default "6.6.44"	if BR2_KERNEL_HEADERS_6_6
-	default "6.9.12"	if BR2_KERNEL_HEADERS_6_9
 	default "6.10.3"	if BR2_KERNEL_HEADERS_6_10
 	default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
 	default "custom"	if BR2_KERNEL_HEADERS_CUSTOM_TARBALL
-- 
2.39.2

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

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

* Re: [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series
  2024-08-03 10:46 [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series Bernd Kuhls
  2024-08-03 10:46 ` [Buildroot] [PATCH 2/2] package/linux-headers: drop 6.9.x option Bernd Kuhls
@ 2024-08-03 18:29 ` Thomas Petazzoni via buildroot
  2024-09-03 18:30 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-08-03 18:29 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

On Sat,  3 Aug 2024 12:46:33 +0200
Bernd Kuhls <bernd@kuhls.net> wrote:

> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> ---
>  linux/Config.in                      | 2 +-
>  linux/linux.hash                     | 6 +++---
>  package/linux-headers/Config.in.host | 6 +++---
>  3 files changed, 7 insertions(+), 7 deletions(-)

Both applied, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series
  2024-08-03 10:46 [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series Bernd Kuhls
  2024-08-03 10:46 ` [Buildroot] [PATCH 2/2] package/linux-headers: drop 6.9.x option Bernd Kuhls
  2024-08-03 18:29 ` [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series Thomas Petazzoni via buildroot
@ 2024-09-03 18:30 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2024-09-03 18:30 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd@kuhls.net> writes:

 > Signed-off-by: Bernd Kuhls <bernd@kuhls.net>

Committed to 2024.02.x and 2024.05.x, thanks.

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

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

end of thread, other threads:[~2024-09-03 18:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-03 10:46 [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series Bernd Kuhls
2024-08-03 10:46 ` [Buildroot] [PATCH 2/2] package/linux-headers: drop 6.9.x option Bernd Kuhls
2024-08-03 18:29 ` [Buildroot] [PATCH 1/2] {linux, linux-headers}: bump 6.{1, 6, 10}.x series Thomas Petazzoni via buildroot
2024-09-03 18:30 ` Peter Korsgaard

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