Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions package/linux-headers/Config.in.host
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ config BR2_KERNEL_HEADERS_6_12
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
select BR2_KERNEL_HEADERS_LATEST

config BR2_KERNEL_HEADERS_6_13
bool "Linux 6.13.x kernel headers"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_13

config BR2_KERNEL_HEADERS_VERSION
bool "Manually specified Linux version"
help
Expand Down Expand Up @@ -129,6 +133,10 @@ choice
If your kernel headers are more recent than the latest version
in the choice, then select the latest version.

config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_13
bool "6.13.x or later"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_13

config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_12
bool "6.12.x or later"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
Expand Down
5 changes: 5 additions & 0 deletions toolchain/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,10 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_11
select BR2_TOOLCHAIN_HEADERS_LATEST

config BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_13
bool
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12

# This should be selected by the latest version, above, to indicate that
# Buildroot does not know of more recent headers than the ones selected.
# This allows using toolchains with headers more recent than Buildroot
Expand All @@ -677,6 +681,7 @@ config BR2_TOOLCHAIN_HEADERS_LATEST
# stops affecting a value on the first matching default.
config BR2_TOOLCHAIN_HEADERS_AT_LEAST
string
default "6.13" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_13
default "6.12" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_12
default "6.11" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_11
default "6.10" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_10
Expand Down