Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 5.{10, 15}.x / 6.{1, 4}.x series
@ 2023-09-22 19:33 Bernd Kuhls
  2023-09-22 19:33 ` [Buildroot] [PATCH 2/3] {toolchain, linux-headers}: add support for 6.5 headers Bernd Kuhls
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2023-09-22 19:33 UTC (permalink / raw)
  To: buildroot
  Cc: Thomas De Schampheleire, Giulio Benetti, Romain Naour,
	Thomas Petazzoni

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

diff --git a/linux/Config.in b/linux/Config.in
index 90ab048055..7ddcf013f8 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -128,7 +128,7 @@ endif
 
 config BR2_LINUX_KERNEL_VERSION
 	string
-	default "6.4.14" if BR2_LINUX_KERNEL_LATEST_VERSION
+	default "6.4.16" 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 d62fc7de09..ecd3492c43 100644
--- a/linux/linux.hash
+++ b/linux/linux.hash
@@ -1,9 +1,9 @@
 # From https://www.kernel.org/pub/linux/kernel/v6.x/sha256sums.asc
-sha256  75eae323747ae37b05086c5a51326a744eb611b0e890e7ebe77de362b30450e6  linux-6.4.14.tar.xz
-sha256  58b0446d8ea4bc0b26a35e2e3509bd53efcdeb295c9e4f48d33a23b1cdaa103b  linux-6.1.51.tar.xz
+sha256  9626ec84a39ecb009bf11a271dd520941159c165d4e62f82e3a77b79d20ff27d  linux-6.4.16.tar.xz
+sha256  a3181e46d407cd6ab15f412402e8220684ff9659b0262b7a3de7384405ce4e27  linux-6.1.54.tar.xz
 # From https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
-sha256  ab464e4107329ff5262f1c585c40fc29dc68f17687a9a918f3e90faba5303d62  linux-5.15.130.tar.xz
-sha256  240d5e47bb378c6813ecd07704fb887651ea7617159d2771071fd70bf33cd995  linux-5.10.194.tar.xz
+sha256  4177b5c4d6e749bb8339ac4aa68eb0932ead9490b956a80d9a597089959618ac  linux-5.15.132.tar.xz
+sha256  71ec2e3af082bcd7c4aac4b8ecdbc2e47695befe4984e3e5567791a605a96fc0  linux-5.10.196.tar.xz
 sha256  c7a4086ba23507b8539d18534565de0d6591138bfa2e449e93964fd5132e353a  linux-5.4.256.tar.xz
 # From https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256  ccadbde939a788934436125a1ecd4464175b68ebe6c18072fbc90c8596eea00f  linux-4.19.294.tar.xz
diff --git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index 7e67dfad5c..3eb47e315b 100644
--- a/package/linux-headers/Config.in.host
+++ b/package/linux-headers/Config.in.host
@@ -403,10 +403,10 @@ config BR2_DEFAULT_KERNEL_HEADERS
 	default "4.14.325"	if BR2_KERNEL_HEADERS_4_14
 	default "4.19.294"	if BR2_KERNEL_HEADERS_4_19
 	default "5.4.256"	if BR2_KERNEL_HEADERS_5_4
-	default "5.10.194"	if BR2_KERNEL_HEADERS_5_10
-	default "5.15.130"	if BR2_KERNEL_HEADERS_5_15
-	default "6.1.51"	if BR2_KERNEL_HEADERS_6_1
-	default "6.4.14"	if BR2_KERNEL_HEADERS_6_4
+	default "5.10.196"	if BR2_KERNEL_HEADERS_5_10
+	default "5.15.132"	if BR2_KERNEL_HEADERS_5_15
+	default "6.1.54"	if BR2_KERNEL_HEADERS_6_1
+	default "6.4.16"	if BR2_KERNEL_HEADERS_6_4
 	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

end of thread, other threads:[~2023-09-30 10:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-22 19:33 [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 5.{10, 15}.x / 6.{1, 4}.x series Bernd Kuhls
2023-09-22 19:33 ` [Buildroot] [PATCH 2/3] {toolchain, linux-headers}: add support for 6.5 headers Bernd Kuhls
2023-09-22 19:33 ` [Buildroot] [PATCH 3/3] package/linux-headers: drop 6.4.x option Bernd Kuhls
2023-09-30 10:29 ` [Buildroot] [PATCH 1/3] {linux, linux-headers}: bump 5.{10, 15}.x / 6.{1, 4}.x series Peter Korsgaard

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