* [Buildroot] [PATCH 1/3] toolchain: add 3.16 choice for headers
@ 2014-08-04 2:29 Gustavo Zacarias
2014-08-04 2:29 ` [Buildroot] [PATCH 2/3] linux-headers: add 3.16.x series Gustavo Zacarias
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 2:29 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
toolchain/toolchain-common.in | 5 +++++
toolchain/toolchain-external/Config.in | 4 ++++
2 files changed, 9 insertions(+)
diff --git a/toolchain/toolchain-common.in b/toolchain/toolchain-common.in
index 48ba840..6d43700 100644
--- a/toolchain/toolchain-common.in
+++ b/toolchain/toolchain-common.in
@@ -213,10 +213,15 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
bool
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14
+config BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16
+ bool
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
+
# 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 "3.16" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16
default "3.15" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
default "3.14" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14
default "3.13" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13
diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
index b524ac7..e210011 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -960,6 +960,10 @@ choice
m = ( LINUX_VERSION_CODE >> 8 ) & 0xFF
p = ( LINUX_VERSION_CODE >> 0 ) & 0xFF
+config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_16
+ bool "3.16.x"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16
+
config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_15
bool "3.15.x"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
--
1.8.5.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/3] linux-headers: add 3.16.x series
2014-08-04 2:29 [Buildroot] [PATCH 1/3] toolchain: add 3.16 choice for headers Gustavo Zacarias
@ 2014-08-04 2:29 ` Gustavo Zacarias
2014-08-04 2:29 ` [Buildroot] [PATCH 3/3] linux: bump default to version 3.16 Gustavo Zacarias
2014-08-04 7:47 ` [Buildroot] [PATCH 1/3] toolchain: add 3.16 choice for headers Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 2:29 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
| 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
--git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index 7b55fdf..0af5974 100644
--- a/package/linux-headers/Config.in.host
+++ b/package/linux-headers/Config.in.host
@@ -5,7 +5,7 @@ comment "Kernel Header Options"
choice
prompt "Kernel Headers"
- default BR2_KERNEL_HEADERS_3_15
+ default BR2_KERNEL_HEADERS_3_16
help
Select the version of kernel header files you wish to use.
You must select the correct set of header files to match
@@ -55,6 +55,10 @@ choice
bool "Linux 3.15.x kernel headers"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
+ config BR2_KERNEL_HEADERS_3_16
+ bool "Linux 3.16.x kernel headers"
+ select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16
+
config BR2_KERNEL_HEADERS_VERSION
bool "Manually specified Linux version"
endchoice
@@ -76,6 +80,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_3_16
+ bool "3.16.x"
+ select BR2_PACKAGE_HEADERS_AT_LEAST_3_16
+
config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_15
bool "3.15.x"
select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
@@ -157,4 +165,5 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "3.13.11" if BR2_KERNEL_HEADERS_3_13
default "3.14.15" if BR2_KERNEL_HEADERS_3_14
default "3.15.8" if BR2_KERNEL_HEADERS_3_15
+ default "3.16" if BR2_KERNEL_HEADERS_3_16
default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
--
1.8.5.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 3/3] linux: bump default to version 3.16
2014-08-04 2:29 [Buildroot] [PATCH 1/3] toolchain: add 3.16 choice for headers Gustavo Zacarias
2014-08-04 2:29 ` [Buildroot] [PATCH 2/3] linux-headers: add 3.16.x series Gustavo Zacarias
@ 2014-08-04 2:29 ` Gustavo Zacarias
2014-08-04 7:47 ` [Buildroot] [PATCH 1/3] toolchain: add 3.16 choice for headers Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2014-08-04 2:29 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
linux/Config.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/linux/Config.in b/linux/Config.in
index da8a774..101c90b 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -21,7 +21,7 @@ choice
prompt "Kernel version"
config BR2_LINUX_KERNEL_LATEST_VERSION
- bool "3.15.8"
+ bool "3.16"
config BR2_LINUX_KERNEL_SAME_AS_HEADERS
bool "Same as toolchain kernel headers"
@@ -104,7 +104,7 @@ config BR2_LINUX_KERNEL_CUSTOM_LOCAL_PATH
config BR2_LINUX_KERNEL_VERSION
string
- default "3.15.8" if BR2_LINUX_KERNEL_LATEST_VERSION
+ default "3.16" if BR2_LINUX_KERNEL_LATEST_VERSION
default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS
default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE \
if BR2_LINUX_KERNEL_CUSTOM_VERSION
--
1.8.5.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/3] toolchain: add 3.16 choice for headers
2014-08-04 2:29 [Buildroot] [PATCH 1/3] toolchain: add 3.16 choice for headers Gustavo Zacarias
2014-08-04 2:29 ` [Buildroot] [PATCH 2/3] linux-headers: add 3.16.x series Gustavo Zacarias
2014-08-04 2:29 ` [Buildroot] [PATCH 3/3] linux: bump default to version 3.16 Gustavo Zacarias
@ 2014-08-04 7:47 ` Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2014-08-04 7:47 UTC (permalink / raw)
To: buildroot
Dear Gustavo Zacarias,
On Sun, 3 Aug 2014 23:29:22 -0300, Gustavo Zacarias wrote:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> toolchain/toolchain-common.in | 5 +++++
> toolchain/toolchain-external/Config.in | 4 ++++
> 2 files changed, 9 insertions(+)
I've applied your three patches, thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-08-04 7:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-04 2:29 [Buildroot] [PATCH 1/3] toolchain: add 3.16 choice for headers Gustavo Zacarias
2014-08-04 2:29 ` [Buildroot] [PATCH 2/3] linux-headers: add 3.16.x series Gustavo Zacarias
2014-08-04 2:29 ` [Buildroot] [PATCH 3/3] linux: bump default to version 3.16 Gustavo Zacarias
2014-08-04 7:47 ` [Buildroot] [PATCH 1/3] toolchain: add 3.16 choice for headers Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox