toolchain: add 4.9.x choice for headers
authorFabio Estevam <festevam@gmail.com>
Sun, 11 Dec 2016 22:01:49 +0000 (20:01 -0200)
committerPeter Korsgaard <peter@korsgaard.com>
Sun, 11 Dec 2016 23:02:03 +0000 (00:02 +0100)
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
toolchain/toolchain-common.in
toolchain/toolchain-external/toolchain-external-custom/Config.in.options

index bf9dc7b93fdcc8fc8cc42594a08627773a1fcf3f..7a217b65c47822673469721555fef8550757dbcb 100644 (file)
@@ -228,10 +228,15 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8
        bool
        select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
 
+config BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
+       bool
+       select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8
+
 # 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.9"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
        default "4.8"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8
        default "4.7"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
        default "4.6"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_6
index 5ff2491e19c13cb74efca43e68f566d44c132378..ed2b082d7b15b45c7a43231cf861eac3a2a8ca6c 100644 (file)
@@ -89,6 +89,10 @@ choice
            m = ( LINUX_VERSION_CODE >> 8  ) & 0xFF
            p = ( LINUX_VERSION_CODE >> 0  ) & 0xFF
 
+config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_9
+       bool "4.9.x"
+       select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
+
 config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_8
        bool "4.8.x"
        select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8