All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers
@ 2015-11-02 14:56 Vicente Olivert Riera
  2015-11-02 14:56 ` [Buildroot] [PATCH 2/3] linux-headers: add 4.3.x series Vicente Olivert Riera
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Vicente Olivert Riera @ 2015-11-02 14:56 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 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 4e880a2..6871d8b 100644
--- a/toolchain/toolchain-common.in
+++ b/toolchain/toolchain-common.in
@@ -231,10 +231,15 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
 	bool
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
 
+config BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3
+	bool
+	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
+
 # 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.3"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3
 	default "4.2"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
 	default "4.1"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
 	default "4.0"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0
diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
index 4291394..3f6b8e8 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -1030,6 +1030,10 @@ choice
 	    m = ( LINUX_VERSION_CODE >> 8  ) & 0xFF
 	    p = ( LINUX_VERSION_CODE >> 0  ) & 0xFF
 
+config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_3
+	bool "4.3.x"
+	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3
+
 config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_2
 	bool "4.2.x"
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
-- 
2.4.10

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/3] linux-headers: add 4.3.x series
  2015-11-02 14:56 [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers Vicente Olivert Riera
@ 2015-11-02 14:56 ` Vicente Olivert Riera
  2015-11-02 15:38   ` James Knight
  2015-11-02 14:56 ` [Buildroot] [PATCH 3/3] linux: bump default version to 4.3 Vicente Olivert Riera
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Vicente Olivert Riera @ 2015-11-02 14:56 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 package/linux-headers/Config.in.host | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/package/linux-headers/Config.in.host b/package/linux-headers/Config.in.host
index 1a8ec69..913cc2a 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_4_2
+	default BR2_KERNEL_HEADERS_4_3
 	help
 	  Select the version of kernel header files you wish to use.
 	  You must select the correct set of header files to match
@@ -71,6 +71,10 @@ choice
 		bool "Linux 4.2.x kernel headers"
 		select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
 
+	config BR2_KERNEL_HEADERS_4_3
+		bool "Linux 4.3.x kernel headers"
+		select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3
+
 	config BR2_KERNEL_HEADERS_VERSION
 		bool "Manually specified Linux version"
 endchoice
@@ -92,6 +96,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_4_3
+	bool "4.3.x"
+	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3
+
 config BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_2
 	bool "4.2.x"
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
@@ -203,4 +211,5 @@ config BR2_DEFAULT_KERNEL_HEADERS
 	default "4.0.9"		if BR2_KERNEL_HEADERS_4_0
 	default "4.1.12"	if BR2_KERNEL_HEADERS_4_1
 	default "4.2.5"		if BR2_KERNEL_HEADERS_4_2
+	default "4.3"		if BR2_KERNEL_HEADERS_4_3
 	default BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
-- 
2.4.10

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 3/3] linux: bump default version to 4.3
  2015-11-02 14:56 [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers Vicente Olivert Riera
  2015-11-02 14:56 ` [Buildroot] [PATCH 2/3] linux-headers: add 4.3.x series Vicente Olivert Riera
@ 2015-11-02 14:56 ` Vicente Olivert Riera
  2015-11-02 15:39   ` James Knight
  2015-11-02 15:38 ` [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers James Knight
  2015-11-02 19:57 ` Thomas Petazzoni
  3 siblings, 1 reply; 7+ messages in thread
From: Vicente Olivert Riera @ 2015-11-02 14:56 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 linux/Config.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/linux/Config.in b/linux/Config.in
index 8a66866..12b417a 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -21,7 +21,7 @@ choice
 	prompt "Kernel version"
 
 config BR2_LINUX_KERNEL_LATEST_VERSION
-	bool "4.2.5"
+	bool "4.3"
 
 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
 	bool "Same as toolchain kernel headers"
@@ -109,7 +109,7 @@ config BR2_LINUX_KERNEL_CUSTOM_LOCAL_PATH
 
 config BR2_LINUX_KERNEL_VERSION
 	string
-	default "4.2.5" if BR2_LINUX_KERNEL_LATEST_VERSION
+	default "4.3" 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
-- 
2.4.10

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers
  2015-11-02 14:56 [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers Vicente Olivert Riera
  2015-11-02 14:56 ` [Buildroot] [PATCH 2/3] linux-headers: add 4.3.x series Vicente Olivert Riera
  2015-11-02 14:56 ` [Buildroot] [PATCH 3/3] linux: bump default version to 4.3 Vicente Olivert Riera
@ 2015-11-02 15:38 ` James Knight
  2015-11-02 19:57 ` Thomas Petazzoni
  3 siblings, 0 replies; 7+ messages in thread
From: James Knight @ 2015-11-02 15:38 UTC (permalink / raw)
  To: buildroot

On Mon, Nov 2, 2015 at 9:56 AM, Vicente Olivert Riera
<Vincent.Riera@imgtec.com> wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Reviewed-by: "James Knight" <james.knight@rockwellcollins.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/3] linux-headers: add 4.3.x series
  2015-11-02 14:56 ` [Buildroot] [PATCH 2/3] linux-headers: add 4.3.x series Vicente Olivert Riera
@ 2015-11-02 15:38   ` James Knight
  0 siblings, 0 replies; 7+ messages in thread
From: James Knight @ 2015-11-02 15:38 UTC (permalink / raw)
  To: buildroot

On Mon, Nov 2, 2015 at 9:56 AM, Vicente Olivert Riera
<Vincent.Riera@imgtec.com> wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Reviewed-by: "James Knight" <james.knight@rockwellcollins.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 3/3] linux: bump default version to 4.3
  2015-11-02 14:56 ` [Buildroot] [PATCH 3/3] linux: bump default version to 4.3 Vicente Olivert Riera
@ 2015-11-02 15:39   ` James Knight
  0 siblings, 0 replies; 7+ messages in thread
From: James Knight @ 2015-11-02 15:39 UTC (permalink / raw)
  To: buildroot

On Mon, Nov 2, 2015 at 9:56 AM, Vicente Olivert Riera
<Vincent.Riera@imgtec.com> wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>

Reviewed-by: "James Knight" <james.knight@rockwellcollins.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers
  2015-11-02 14:56 [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers Vicente Olivert Riera
                   ` (2 preceding siblings ...)
  2015-11-02 15:38 ` [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers James Knight
@ 2015-11-02 19:57 ` Thomas Petazzoni
  3 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2015-11-02 19:57 UTC (permalink / raw)
  To: buildroot

Dear Vicente Olivert Riera,

On Mon, 2 Nov 2015 15:56:51 +0100, Vicente Olivert Riera wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
>  toolchain/toolchain-common.in          | 5 +++++
>  toolchain/toolchain-external/Config.in | 4 ++++
>  2 files changed, 9 insertions(+)

All three patches applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-11-02 19:57 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-02 14:56 [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers Vicente Olivert Riera
2015-11-02 14:56 ` [Buildroot] [PATCH 2/3] linux-headers: add 4.3.x series Vicente Olivert Riera
2015-11-02 15:38   ` James Knight
2015-11-02 14:56 ` [Buildroot] [PATCH 3/3] linux: bump default version to 4.3 Vicente Olivert Riera
2015-11-02 15:39   ` James Knight
2015-11-02 15:38 ` [Buildroot] [PATCH 1/3] toolchain: add 4.3.x choice for headers James Knight
2015-11-02 19:57 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.