Skip to content

Commit f6bb13f

Browse files
committed
Prepare support for kernel 6.13
1 parent da6fc1a commit f6bb13f

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

package/linux-headers/Config.in.host

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ config BR2_KERNEL_HEADERS_6_12
5353
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
5454
select BR2_KERNEL_HEADERS_LATEST
5555

56+
config BR2_KERNEL_HEADERS_6_13
57+
bool "Linux 6.13.x kernel headers"
58+
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_13
59+
5660
config BR2_KERNEL_HEADERS_VERSION
5761
bool "Manually specified Linux version"
5862
help
@@ -129,6 +133,10 @@ choice
129133
If your kernel headers are more recent than the latest version
130134
in the choice, then select the latest version.
131135

136+
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_13
137+
bool "6.13.x or later"
138+
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_13
139+
132140
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_12
133141
bool "6.12.x or later"
134142
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12

toolchain/Config.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,10 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
666666
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_11
667667
select BR2_TOOLCHAIN_HEADERS_LATEST
668668

669+
config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_13
670+
bool
671+
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
672+
669673
# This should be selected by the latest version, above, to indicate that
670674
# Buildroot does not know of more recent headers than the ones selected.
671675
# This allows using toolchains with headers more recent than Buildroot
@@ -677,6 +681,7 @@ config BR2_TOOLCHAIN_HEADERS_LATEST
677681
# stops affecting a value on the first matching default.
678682
config BR2_TOOLCHAIN_HEADERS_AT_LEAST
679683
string
684+
default "6.13" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_13
680685
default "6.12" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
681686
default "6.11" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_11
682687
default "6.10" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10

0 commit comments

Comments
 (0)