|
@@ -6,9 +6,7 @@ config BR2_PACKAGE_HOST_LINUX_HEADERS
|
|
|
choice
|
|
|
prompt "Kernel Headers"
|
|
|
default BR2_KERNEL_HEADERS_AS_KERNEL if BR2_LINUX_KERNEL
|
|
|
- # We are intentionally staying at 4.19 for the next Buildroot
|
|
|
- # LTS release (2019.02)
|
|
|
- default BR2_KERNEL_HEADERS_4_19
|
|
|
+ default BR2_KERNEL_HEADERS_5_0
|
|
|
help
|
|
|
Select the kernel version to get headers from.
|
|
|
|
|
@@ -51,6 +49,10 @@ config BR2_KERNEL_HEADERS_4_20
|
|
|
bool "Linux 4.20.x kernel headers"
|
|
|
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_20
|
|
|
|
|
|
+config BR2_KERNEL_HEADERS_5_0
|
|
|
+ bool "Linux 5.0.x kernel headers"
|
|
|
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
|
|
|
+
|
|
|
config BR2_KERNEL_HEADERS_VERSION
|
|
|
bool "Manually specified Linux version"
|
|
|
help
|
|
@@ -116,6 +118,10 @@ choice
|
|
|
This is used to hide/show some packages that have strict
|
|
|
requirements on the version of kernel headers.
|
|
|
|
|
|
+config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_0
|
|
|
+ bool "5.0.x"
|
|
|
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
|
|
|
+
|
|
|
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_20
|
|
|
bool "4.20.x"
|
|
|
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_20
|
|
@@ -292,6 +298,7 @@ config BR2_DEFAULT_KERNEL_HEADERS
|
|
|
default "4.14.103" if BR2_KERNEL_HEADERS_4_14
|
|
|
default "4.19.25" if BR2_KERNEL_HEADERS_4_19
|
|
|
default "4.20.12" if BR2_KERNEL_HEADERS_4_20
|
|
|
+ default "5.0.2" if BR2_KERNEL_HEADERS_5_0
|
|
|
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 \
|