All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] toolchain: add BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
@ 2019-04-04  7:01 Clément Leger
  2019-04-04  7:01 ` [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1 Clément Leger
  2019-04-07  7:12 ` [Buildroot] [PATCH 1/3] toolchain: add BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1 Peter Korsgaard
  0 siblings, 2 replies; 10+ messages in thread
From: Clément Leger @ 2019-04-04  7:01 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Clement Leger <clement.leger@kalray.eu>
---
 toolchain/Config.in | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/toolchain/Config.in b/toolchain/Config.in
index 552220123f..8c5a4fb88e 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -404,10 +404,15 @@ config BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
 	bool
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_20
 
+config BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
+	bool
+	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_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 "5.1"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
 	default "5.0"  if BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
 	default "4.20" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_20
 	default "4.19" if BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19
-- 
2.15.0.276.g89ea799

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

* [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1
  2019-04-04  7:01 [Buildroot] [PATCH 1/3] toolchain: add BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1 Clément Leger
@ 2019-04-04  7:01 ` Clément Leger
  2019-04-04  7:03   ` [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers Clément Leger
  2019-04-07  7:13   ` [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1 Peter Korsgaard
  2019-04-07  7:12 ` [Buildroot] [PATCH 1/3] toolchain: add BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1 Peter Korsgaard
  1 sibling, 2 replies; 10+ messages in thread
From: Clément Leger @ 2019-04-04  7:01 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Clement Leger <clement.leger@kalray.eu>
---
 .../toolchain-external/toolchain-external-custom/Config.in.options    | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
index 607490260f..cb7095632f 100644
--- a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
+++ b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
@@ -123,6 +123,10 @@ choice
 	    m = ( LINUX_VERSION_CODE >> 8  ) & 0xFF
 	    p = ( LINUX_VERSION_CODE >> 0  ) & 0xFF
 
+config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_1
+	bool "5.1.x"
+	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
+
 config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_0
 	bool "5.0.x"
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
-- 
2.15.0.276.g89ea799

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

* [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers
  2019-04-04  7:01 ` [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1 Clément Leger
@ 2019-04-04  7:03   ` Clément Leger
  2019-04-07  7:13     ` Peter Korsgaard
  2019-04-07  7:13   ` [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1 Peter Korsgaard
  1 sibling, 1 reply; 10+ messages in thread
From: Clément Leger @ 2019-04-04  7:03 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Clement Leger <clement.leger@kalray.eu>
---
 .../toolchain-external/toolchain-external-custom/Config.in.options    | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
index 607490260f..cb7095632f 100644
--- a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
+++ b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
@@ -123,6 +123,10 @@ choice
 	    m = ( LINUX_VERSION_CODE >> 8  ) & 0xFF
 	    p = ( LINUX_VERSION_CODE >> 0  ) & 0xFF
 
+config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_1
+	bool "5.1.x"
+	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
+
 config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_0
 	bool "5.0.x"
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
-- 
2.15.0.276.g89ea799

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

* [Buildroot] [PATCH 1/3] toolchain: add BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
  2019-04-04  7:01 [Buildroot] [PATCH 1/3] toolchain: add BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1 Clément Leger
  2019-04-04  7:01 ` [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1 Clément Leger
@ 2019-04-07  7:12 ` Peter Korsgaard
  1 sibling, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2019-04-07  7:12 UTC (permalink / raw)
  To: buildroot

>>>>> "Cl?ment" == Cl?ment Leger <cleger@kalray.eu> writes:

 > Signed-off-by: Clement Leger <clement.leger@kalray.eu>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1
  2019-04-04  7:01 ` [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1 Clément Leger
  2019-04-04  7:03   ` [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers Clément Leger
@ 2019-04-07  7:13   ` Peter Korsgaard
  1 sibling, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2019-04-07  7:13 UTC (permalink / raw)
  To: buildroot

>>>>> "Cl?ment" == Cl?ment Leger <cleger@kalray.eu> writes:

 > Signed-off-by: Clement Leger <clement.leger@kalray.eu>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers
  2019-04-04  7:03   ` [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers Clément Leger
@ 2019-04-07  7:13     ` Peter Korsgaard
  2019-04-08  7:18       ` Clément Leger
  0 siblings, 1 reply; 10+ messages in thread
From: Peter Korsgaard @ 2019-04-07  7:13 UTC (permalink / raw)
  To: buildroot

>>>>> "Cl?ment" == Cl?ment Leger <cleger@kalray.eu> writes:

 > Signed-off-by: Clement Leger <clement.leger@kalray.eu>
 > ---
 >  .../toolchain-external/toolchain-external-custom/Config.in.options    | 4 ++++
 >  1 file changed, 4 insertions(+)

Ehh, this looks to be a copy of patch 2/3 - Did you send the wrong
patch?

 > diff --git a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
 > index 607490260f..cb7095632f 100644
 > --- a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
 > +++ b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
 > @@ -123,6 +123,10 @@ choice
 >  	    m = ( LINUX_VERSION_CODE >> 8  ) & 0xFF
 >  	    p = ( LINUX_VERSION_CODE >> 0  ) & 0xFF
 
 > +config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_1
 > +	bool "5.1.x"
 > +	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
 > +
 >  config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_0
 >  	bool "5.0.x"
 >  	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
 > -- 
 > 2.15.0.276.g89ea799
 > _______________________________________________
 > buildroot mailing list
 > buildroot at busybox.net
 > http://lists.busybox.net/mailman/listinfo/buildroot

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers
  2019-04-07  7:13     ` Peter Korsgaard
@ 2019-04-08  7:18       ` Clément Leger
  2019-04-08  7:47         ` Peter Korsgaard
  0 siblings, 1 reply; 10+ messages in thread
From: Clément Leger @ 2019-04-08  7:18 UTC (permalink / raw)
  To: buildroot

Absolutely :/. I will resend it as a separate one if you are ok with that.

>>>>>> "Cl?ment" == Cl?ment Leger <cleger@kalray.eu> writes:
> 
> > Signed-off-by: Clement Leger <clement.leger@kalray.eu>
> > ---
> >  .../toolchain-external/toolchain-external-custom/Config.in.options    | 4 ++++
> >  1 file changed, 4 insertions(+)
> 
> Ehh, this looks to be a copy of patch 2/3 - Did you send the wrong
> patch?
> 
> > diff --git
> > a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
> > b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
> > index 607490260f..cb7095632f 100644
> > --- a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
> > +++ b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options
> > @@ -123,6 +123,10 @@ choice
> >  	    m = ( LINUX_VERSION_CODE >> 8  ) & 0xFF
> >  	    p = ( LINUX_VERSION_CODE >> 0  ) & 0xFF
> 
> > +config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_1
> > +	bool "5.1.x"
> > +	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
> > +
> >  config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_0
> >  	bool "5.0.x"
> >  	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
> > --
> > 2.15.0.276.g89ea799
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot
> 
> --
> Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers
  2019-04-08  7:18       ` Clément Leger
@ 2019-04-08  7:47         ` Peter Korsgaard
  2019-04-08  8:06           ` Clément Leger
  0 siblings, 1 reply; 10+ messages in thread
From: Peter Korsgaard @ 2019-04-08  7:47 UTC (permalink / raw)
  To: buildroot

>>>>> "Cl?ment" == Cl?ment Leger <cleger@kalray.eu> writes:

 > Absolutely :/. I will resend it as a separate one if you are ok with that.

Yes, please - But as 5.1 has not been released yet, I'm not sure what
exactly you want to update in linux-headers? Just the
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_1 symbol?

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers
  2019-04-08  7:47         ` Peter Korsgaard
@ 2019-04-08  8:06           ` Clément Leger
  2019-04-08 10:47             ` Peter Korsgaard
  0 siblings, 1 reply; 10+ messages in thread
From: Clément Leger @ 2019-04-08  8:06 UTC (permalink / raw)
  To: buildroot

Yes, that was the intended modification.
But it can probably wait for the 5.1 release if needed.

>>>>>> "Cl?ment" == Cl?ment Leger <cleger@kalray.eu> writes:
> 
> > Absolutely :/. I will resend it as a separate one if you are ok with that.
> 
> Yes, please - But as 5.1 has not been released yet, I'm not sure what
> exactly you want to update in linux-headers? Just the
> BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_1 symbol?
> 
> --
> Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers
  2019-04-08  8:06           ` Clément Leger
@ 2019-04-08 10:47             ` Peter Korsgaard
  0 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2019-04-08 10:47 UTC (permalink / raw)
  To: buildroot

>>>>> "Cl?ment" == Cl?ment Leger <cleger@kalray.eu> writes:

 > Yes, that was the intended modification.
 > But it can probably wait for the 5.1 release if needed.

Up to you. Either send a patch now just for _CUSTOM_5_1 and then another
once 5.1 is released or wait.

When we add 5.1 I think it makes sense to remove 4.20 as it is now EOL.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2019-04-08 10:47 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-04  7:01 [Buildroot] [PATCH 1/3] toolchain: add BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1 Clément Leger
2019-04-04  7:01 ` [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1 Clément Leger
2019-04-04  7:03   ` [Buildroot] [PATCH 3/3] package/linux-headers: add support for Linux 5.1 kernel headers Clément Leger
2019-04-07  7:13     ` Peter Korsgaard
2019-04-08  7:18       ` Clément Leger
2019-04-08  7:47         ` Peter Korsgaard
2019-04-08  8:06           ` Clément Leger
2019-04-08 10:47             ` Peter Korsgaard
2019-04-07  7:13   ` [Buildroot] [PATCH 2/3] toolchain/toolchain-external-custom: support Linux 5.1 Peter Korsgaard
2019-04-07  7:12 ` [Buildroot] [PATCH 1/3] toolchain: add BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1 Peter Korsgaard

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.