toolchain: add 4.1.x choice for headers
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Mon, 22 Jun 2015 13:11:03 +0000 (10:11 -0300)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 22 Jun 2015 16:19:34 +0000 (18:19 +0200)
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
toolchain/toolchain-common.in
toolchain/toolchain-external/Config.in

index 4f411c3acac8b2045adb226b96a34edccda00a28..b7a11a43257e6ca4d906f22d03034306fb35dc77 100644 (file)
@@ -223,10 +223,15 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0
        bool
        select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_19
 
+config BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
+       bool
+       select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0
+
 # 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.1"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
        default "4.0"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0
        default "3.19" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_19
        default "3.18" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
index 017e91322dd38777851092b586dc5aee13592331..e70989ebb9d9e3306d61062c8a610860556a2936 100644 (file)
@@ -981,6 +981,10 @@ choice
            m = ( LINUX_VERSION_CODE >> 8  ) & 0xFF
            p = ( LINUX_VERSION_CODE >> 0  ) & 0xFF
 
+config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_1
+       bool "4.1.x"
+       select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
+
 config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_0
        bool "4.0.x"
        select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0