All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels
@ 2019-03-06 21:28 Arnout Vandecappelle
  2019-03-06 21:28 ` [Buildroot] [PATCH 2/2] linux{, -headers}: support downloads of v5+ Arnout Vandecappelle
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Arnout Vandecappelle @ 2019-03-06 21:28 UTC (permalink / raw)
  To: buildroot

-rc kernels after v3.x are no longer available in the testing
subdirectory. Instead they should be fetched from cgit.

Commit ff4cccbdcf5417a5a8c251ff302791a306023cc1 did this for linux
itself, now we also do it for linux-headers.

When fetched from cgit, .tar.xz can't be used. Adding this to the
existing condition is not so simple, so refactor how _SOURCE is set:
simply set it explicitly in each branch of the condition. While more
verbose (it is repeated 4 times), it's easier to understand and to
maintain.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/linux-headers/linux-headers.mk | 23 ++++++++++-------------
 1 file changed, 10 insertions(+), 13 deletions(-)

diff --git a/package/linux-headers/linux-headers.mk b/package/linux-headers/linux-headers.mk
index 45e17688c5..4b5ebf8d97 100644
--- a/package/linux-headers/linux-headers.mk
+++ b/package/linux-headers/linux-headers.mk
@@ -27,28 +27,29 @@ LINUX_HEADERS_CUSTOM_TARBALL_LOCATION = $(call qstrip,$(BR2_KERNEL_HEADERS_CUSTO
 LINUX_HEADERS_REPO_URL = $(call qstrip,$(BR2_KERNEL_HEADERS_CUSTOM_REPO_URL))
 endif # BR2_KERNEL_HEADERS_AS_KERNEL
 
-# Configure tarball filenames.
+# Compute LINUX_HEADERS_SOURCE and LINUX_HEADERS_SITE from the configuration
 ifeq ($(LINUX_HEADERS_CUSTOM_TARBALL),y)
 LINUX_HEADERS_SOURCE = $(notdir $(LINUX_HEADERS_CUSTOM_TARBALL_LOCATION))
-else ifeq ($(LINUX_HEADERS_CUSTOM_GIT)$(LINUX_HEADERS_CUSTOM_HG)$(LINUX_HEADERS_CUSTOM_SVN),y)
-LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.gz
-else
-LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.xz
-endif
-
-# Configure the various kernel source locations.
-ifeq ($(LINUX_HEADERS_CUSTOM_TARBALL),y)
 LINUX_HEADERS_SITE = $(patsubst %/,%,$(dir $(LINUX_HEADERS_CUSTOM_TARBALL_LOCATION)))
 else ifeq ($(LINUX_HEADERS_CUSTOM_GIT),y)
+LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.gz
 LINUX_HEADERS_SITE = $(LINUX_HEADERS_REPO_URL)
 LINUX_HEADERS_SITE_METHOD = git
 else ifeq ($(LINUX_HEADERS_CUSTOM_HG),y)
+LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.gz
 LINUX_HEADERS_SITE = $(LINUX_HEADERS_REPO_URL)
 LINUX_HEADERS_SITE_METHOD = hg
 else ifeq ($(LINUX_HEADERS_CUSTOM_SVN),y)
+LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.gz
 LINUX_HEADERS_SITE = $(LINUX_HEADERS_REPO_URL)
 LINUX_HEADERS_SITE_METHOD = svn
+else ifneq ($(findstring -rc,$(LINUX_HEADERS_VERSION)),)
+# Since 4.12-rc1, -rc kernels are generated from cgit. This also works for
+# older -rc kernels.
+LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.gz
+LINUX_HEADERS_SITE = https://git.kernel.org/torvalds/t
 else
+LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.xz
 # In X.Y.Z, get X and Y. We replace dots and dashes by spaces in order
 # to use the $(word) function. We support versions such as 4.0, 3.1,
 # 2.6.32, 2.6.32-rc1, 3.0-rc6, etc.
@@ -59,10 +60,6 @@ LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x
 else ifeq ($(findstring x4.,x$(LINUX_HEADERS_VERSION)),x4.)
 LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v4.x
 endif # x2.6
-# release candidates are in testing/ subdir
-ifneq ($(findstring -rc,$(LINUX_HEADERS_VERSION)),)
-LINUX_HEADERS_SITE := $(LINUX_HEADERS_SITE)/testing
-endif # -rc
 endif # LINUX_HEADERS_CUSTOM_TARBALL
 
 # Apply any necessary patches if we are using the headers from a kernel
-- 
2.20.1

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

* [Buildroot] [PATCH 2/2] linux{, -headers}: support downloads of v5+
  2019-03-06 21:28 [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels Arnout Vandecappelle
@ 2019-03-06 21:28 ` Arnout Vandecappelle
  2019-03-07 11:23   ` Jan Kundrát
  2019-03-25 20:46   ` Peter Korsgaard
  2019-03-14 21:14 ` [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels Thomas Petazzoni
  2019-03-25 20:45 ` Peter Korsgaard
  2 siblings, 2 replies; 7+ messages in thread
From: Arnout Vandecappelle @ 2019-03-06 21:28 UTC (permalink / raw)
  To: buildroot

With the arrival of linux v5.0, we need yet another condition to set
_SITE correctly. Instead of continuing this madness, solve the problem
generically: use v2.6 for 2.6.*, and use the number before the first dot
in the other cases.

While we're at it, remove the comment which has been incorrect since
80d7b68167a5c8893e906ace6b5f0b0166336406 (7 years ago).

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 linux/linux.mk                         | 9 ++-------
 package/linux-headers/linux-headers.mk | 9 ++-------
 2 files changed, 4 insertions(+), 14 deletions(-)

diff --git a/linux/linux.mk b/linux/linux.mk
index 2b5d096e14..c7081db88f 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -37,15 +37,10 @@ else ifneq ($(findstring -rc,$(LINUX_VERSION)),)
 LINUX_SITE = https://git.kernel.org/torvalds/t
 else
 LINUX_SOURCE = linux-$(LINUX_VERSION).tar.xz
-# In X.Y.Z, get X and Y. We replace dots and dashes by spaces in order
-# to use the $(word) function. We support versions such as 4.0, 3.1,
-# 2.6.32, 2.6.32-rc1, 3.0-rc6, etc.
 ifeq ($(findstring x2.6.,x$(LINUX_VERSION)),x2.6.)
 LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6
-else ifeq ($(findstring x3.,x$(LINUX_VERSION)),x3.)
-LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x
-else ifeq ($(findstring x4.,x$(LINUX_VERSION)),x4.)
-LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v4.x
+else
+LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v$(firstword $(subst ., ,$(LINUX_VERSION))).x
 endif
 endif
 
diff --git a/package/linux-headers/linux-headers.mk b/package/linux-headers/linux-headers.mk
index 4b5ebf8d97..95432ade83 100644
--- a/package/linux-headers/linux-headers.mk
+++ b/package/linux-headers/linux-headers.mk
@@ -50,15 +50,10 @@ LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.gz
 LINUX_HEADERS_SITE = https://git.kernel.org/torvalds/t
 else
 LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.xz
-# In X.Y.Z, get X and Y. We replace dots and dashes by spaces in order
-# to use the $(word) function. We support versions such as 4.0, 3.1,
-# 2.6.32, 2.6.32-rc1, 3.0-rc6, etc.
 ifeq ($(findstring x2.6.,x$(LINUX_HEADERS_VERSION)),x2.6.)
 LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6
-else ifeq ($(findstring x3.,x$(LINUX_HEADERS_VERSION)),x3.)
-LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x
-else ifeq ($(findstring x4.,x$(LINUX_HEADERS_VERSION)),x4.)
-LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v4.x
+else
+LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v$(firstword $(subst ., ,$(LINUX_HEADERS_VERSION))).x
 endif # x2.6
 endif # LINUX_HEADERS_CUSTOM_TARBALL
 
-- 
2.20.1

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

* [Buildroot]  [PATCH 2/2] linux{, -headers}: support downloads of v5+
  2019-03-06 21:28 ` [Buildroot] [PATCH 2/2] linux{, -headers}: support downloads of v5+ Arnout Vandecappelle
@ 2019-03-07 11:23   ` Jan Kundrát
  2019-03-13 22:24     ` Adam Duskett
  2019-03-25 20:46   ` Peter Korsgaard
  1 sibling, 1 reply; 7+ messages in thread
From: Jan Kundrát @ 2019-03-07 11:23 UTC (permalink / raw)
  To: buildroot

On st?eda 6. b?ezna 2019 22:28:15 CET, Arnout Vandecappelle 
(Essensium/Mind) wrote:
> With the arrival of linux v5.0, we need yet another condition to set
> _SITE correctly. Instead of continuing this madness, solve the problem
> generically: use v2.6 for 2.6.*, and use the number before the first dot
> in the other cases.
>
> While we're at it, remove the comment which has been incorrect since
> 80d7b68167a5c8893e906ace6b5f0b0166336406 (7 years ago).
>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> ---
>  linux/linux.mk                         | 9 ++-------
>  package/linux-headers/linux-headers.mk | 9 ++-------
>  2 files changed, 4 insertions(+), 14 deletions(-)
>
> diff --git a/linux/linux.mk b/linux/linux.mk
> index 2b5d096e14..c7081db88f 100644
> --- a/linux/linux.mk
> +++ b/linux/linux.mk
> @@ -37,15 +37,10 @@ else ifneq ($(findstring -rc,$(LINUX_VERSION)),)
>  LINUX_SITE = https://git.kernel.org/torvalds/t
>  else
>  LINUX_SOURCE = linux-$(LINUX_VERSION).tar.xz
> -# In X.Y.Z, get X and Y. We replace dots and dashes by spaces in order
> -# to use the $(word) function. We support versions such as 4.0, 3.1,
> -# 2.6.32, 2.6.32-rc1, 3.0-rc6, etc.
>  ifeq ($(findstring x2.6.,x$(LINUX_VERSION)),x2.6.)
>  LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6
> -else ifeq ($(findstring x3.,x$(LINUX_VERSION)),x3.)
> -LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x
> -else ifeq ($(findstring x4.,x$(LINUX_VERSION)),x4.)
> -LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v4.x
> +else
> +LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v$(firstword 
> $(subst ., ,$(LINUX_VERSION))).x
>  endif
>  endif
>  
> diff --git a/package/linux-headers/linux-headers.mk 
> b/package/linux-headers/linux-headers.mk
> index 4b5ebf8d97..95432ade83 100644
> --- a/package/linux-headers/linux-headers.mk
> +++ b/package/linux-headers/linux-headers.mk
> @@ -50,15 +50,10 @@ LINUX_HEADERS_SOURCE = 
> linux-$(LINUX_HEADERS_VERSION).tar.gz
>  LINUX_HEADERS_SITE = https://git.kernel.org/torvalds/t
>  else
>  LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.xz
> -# In X.Y.Z, get X and Y. We replace dots and dashes by spaces in order
> -# to use the $(word) function. We support versions such as 4.0, 3.1,
> -# 2.6.32, 2.6.32-rc1, 3.0-rc6, etc.
>  ifeq ($(findstring x2.6.,x$(LINUX_HEADERS_VERSION)),x2.6.)
>  LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6
> -else ifeq ($(findstring x3.,x$(LINUX_HEADERS_VERSION)),x3.)
> -LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x
> -else ifeq ($(findstring x4.,x$(LINUX_HEADERS_VERSION)),x4.)
> -LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v4.x
> +else
> +LINUX_HEADERS_SITE = 
> $(BR2_KERNEL_MIRROR)/linux/kernel/v$(firstword $(subst ., 
> ,$(LINUX_HEADERS_VERSION))).x
>  endif # x2.6
>  endif # LINUX_HEADERS_CUSTOM_TARBALL
>  

Tested-by: Jan Kundr?t <jan.kundrat@cesnet.cz>

Thanks!

Jan

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

* [Buildroot] [PATCH 2/2] linux{, -headers}: support downloads of v5+
  2019-03-07 11:23   ` Jan Kundrát
@ 2019-03-13 22:24     ` Adam Duskett
  0 siblings, 0 replies; 7+ messages in thread
From: Adam Duskett @ 2019-03-13 22:24 UTC (permalink / raw)
  To: buildroot

All;

Tested-by: Adam Duskett <aduskett@gmail.com>
Reviewed-by: Adam Duskett <aduskett@gmail.com>


On Thu, Mar 7, 2019 at 6:23 AM Jan Kundr?t <jan.kundrat@cesnet.cz> wrote:
>
> On st?eda 6. b?ezna 2019 22:28:15 CET, Arnout Vandecappelle
> (Essensium/Mind) wrote:
> > With the arrival of linux v5.0, we need yet another condition to set
> > _SITE correctly. Instead of continuing this madness, solve the problem
> > generically: use v2.6 for 2.6.*, and use the number before the first dot
> > in the other cases.
> >
> > While we're at it, remove the comment which has been incorrect since
> > 80d7b68167a5c8893e906ace6b5f0b0166336406 (7 years ago).
> >
> > Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> > ---
> >  linux/linux.mk                         | 9 ++-------
> >  package/linux-headers/linux-headers.mk | 9 ++-------
> >  2 files changed, 4 insertions(+), 14 deletions(-)
> >
> > diff --git a/linux/linux.mk b/linux/linux.mk
> > index 2b5d096e14..c7081db88f 100644
> > --- a/linux/linux.mk
> > +++ b/linux/linux.mk
> > @@ -37,15 +37,10 @@ else ifneq ($(findstring -rc,$(LINUX_VERSION)),)
> >  LINUX_SITE = https://git.kernel.org/torvalds/t
> >  else
> >  LINUX_SOURCE = linux-$(LINUX_VERSION).tar.xz
> > -# In X.Y.Z, get X and Y. We replace dots and dashes by spaces in order
> > -# to use the $(word) function. We support versions such as 4.0, 3.1,
> > -# 2.6.32, 2.6.32-rc1, 3.0-rc6, etc.
> >  ifeq ($(findstring x2.6.,x$(LINUX_VERSION)),x2.6.)
> >  LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6
> > -else ifeq ($(findstring x3.,x$(LINUX_VERSION)),x3.)
> > -LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x
> > -else ifeq ($(findstring x4.,x$(LINUX_VERSION)),x4.)
> > -LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v4.x
> > +else
> > +LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v$(firstword
> > $(subst ., ,$(LINUX_VERSION))).x
> >  endif
> >  endif
> >
> > diff --git a/package/linux-headers/linux-headers.mk
> > b/package/linux-headers/linux-headers.mk
> > index 4b5ebf8d97..95432ade83 100644
> > --- a/package/linux-headers/linux-headers.mk
> > +++ b/package/linux-headers/linux-headers.mk
> > @@ -50,15 +50,10 @@ LINUX_HEADERS_SOURCE =
> > linux-$(LINUX_HEADERS_VERSION).tar.gz
> >  LINUX_HEADERS_SITE = https://git.kernel.org/torvalds/t
> >  else
> >  LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.xz
> > -# In X.Y.Z, get X and Y. We replace dots and dashes by spaces in order
> > -# to use the $(word) function. We support versions such as 4.0, 3.1,
> > -# 2.6.32, 2.6.32-rc1, 3.0-rc6, etc.
> >  ifeq ($(findstring x2.6.,x$(LINUX_HEADERS_VERSION)),x2.6.)
> >  LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6
> > -else ifeq ($(findstring x3.,x$(LINUX_HEADERS_VERSION)),x3.)
> > -LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x
> > -else ifeq ($(findstring x4.,x$(LINUX_HEADERS_VERSION)),x4.)
> > -LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v4.x
> > +else
> > +LINUX_HEADERS_SITE =
> > $(BR2_KERNEL_MIRROR)/linux/kernel/v$(firstword $(subst .,
> > ,$(LINUX_HEADERS_VERSION))).x
> >  endif # x2.6
> >  endif # LINUX_HEADERS_CUSTOM_TARBALL
> >
>
> Tested-by: Jan Kundr?t <jan.kundrat@cesnet.cz>
>
> Thanks!
>
> Jan
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels
  2019-03-06 21:28 [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels Arnout Vandecappelle
  2019-03-06 21:28 ` [Buildroot] [PATCH 2/2] linux{, -headers}: support downloads of v5+ Arnout Vandecappelle
@ 2019-03-14 21:14 ` Thomas Petazzoni
  2019-03-25 20:45 ` Peter Korsgaard
  2 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2019-03-14 21:14 UTC (permalink / raw)
  To: buildroot

On Wed,  6 Mar 2019 22:28:14 +0100
"Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> wrote:

> -rc kernels after v3.x are no longer available in the testing
> subdirectory. Instead they should be fetched from cgit.
> 
> Commit ff4cccbdcf5417a5a8c251ff302791a306023cc1 did this for linux
> itself, now we also do it for linux-headers.
> 
> When fetched from cgit, .tar.xz can't be used. Adding this to the
> existing condition is not so simple, so refactor how _SOURCE is set:
> simply set it explicitly in each branch of the condition. While more
> verbose (it is repeated 4 times), it's easier to understand and to
> maintain.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> ---
>  package/linux-headers/linux-headers.mk | 23 ++++++++++-------------
>  1 file changed, 10 insertions(+), 13 deletions(-)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels
  2019-03-06 21:28 [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels Arnout Vandecappelle
  2019-03-06 21:28 ` [Buildroot] [PATCH 2/2] linux{, -headers}: support downloads of v5+ Arnout Vandecappelle
  2019-03-14 21:14 ` [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels Thomas Petazzoni
@ 2019-03-25 20:45 ` Peter Korsgaard
  2 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2019-03-25 20:45 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:

 > -rc kernels after v3.x are no longer available in the testing
 > subdirectory. Instead they should be fetched from cgit.

 > Commit ff4cccbdcf5417a5a8c251ff302791a306023cc1 did this for linux
 > itself, now we also do it for linux-headers.

 > When fetched from cgit, .tar.xz can't be used. Adding this to the
 > existing condition is not so simple, so refactor how _SOURCE is set:
 > simply set it explicitly in each branch of the condition. While more
 > verbose (it is repeated 4 times), it's easier to understand and to
 > maintain.

 > Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Committed to 2019.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] linux{, -headers}: support downloads of v5+
  2019-03-06 21:28 ` [Buildroot] [PATCH 2/2] linux{, -headers}: support downloads of v5+ Arnout Vandecappelle
  2019-03-07 11:23   ` Jan Kundrát
@ 2019-03-25 20:46   ` Peter Korsgaard
  1 sibling, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2019-03-25 20:46 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:

 > With the arrival of linux v5.0, we need yet another condition to set
 > _SITE correctly. Instead of continuing this madness, solve the problem
 > generically: use v2.6 for 2.6.*, and use the number before the first dot
 > in the other cases.

 > While we're at it, remove the comment which has been incorrect since
 > 80d7b68167a5c8893e906ace6b5f0b0166336406 (7 years ago).

 > Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Committed to 2019.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2019-03-25 20:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-06 21:28 [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels Arnout Vandecappelle
2019-03-06 21:28 ` [Buildroot] [PATCH 2/2] linux{, -headers}: support downloads of v5+ Arnout Vandecappelle
2019-03-07 11:23   ` Jan Kundrát
2019-03-13 22:24     ` Adam Duskett
2019-03-25 20:46   ` Peter Korsgaard
2019-03-14 21:14 ` [Buildroot] [PATCH 1/2] package/linux-headers: fix support for -rc kernels Thomas Petazzoni
2019-03-25 20:45 ` 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.