diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-12-31 18:52:31 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2019-01-01 22:56:16 +0100 |
commit | 649883d2c9957b7a7fcf81c4475f848ad8865ca1 (patch) | |
tree | a50b0bbcd7a09fd3d7d051d40e7194d927cf997d | |
parent | 608b3fc885b919e8e28c812991e46f0256328c2a (diff) | |
download | buildroot-649883d2c9957b7a7fcf81c4475f848ad8865ca1.tar.gz buildroot-649883d2c9957b7a7fcf81c4475f848ad8865ca1.zip |
toolchain: add necessary options to support 4.20 kernel headers
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | toolchain/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index bf8ed5bf5b..baf192c936 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -370,10 +370,15 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19 bool select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_18 +config BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_20 + bool + select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19 + # This order guarantees that the highest version is set, as kconfig # stops affecting a value on the first matching default. config BR2_TOOLCHAIN_HEADERS_AT_LEAST string + default "4.20" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_20 default "4.19" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19 default "4.18" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_18 default "4.17" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_17 |