Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] linux-headers: switch to xz format
@ 2013-07-04 10:50 Gustavo Zacarias
  2013-07-04 11:31 ` Peter Korsgaard
  2013-07-04 13:35 ` Thomas Petazzoni
  0 siblings, 2 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2013-07-04 10:50 UTC (permalink / raw)
  To: buildroot

The headers and kernels where changed to XZ format on commit
98b5cc3eb4d4103b2149325b98a5e93e68c68dd8, but the headers reverted back
to bz2 on the packaging of the toolchain.
This causes double kernel downloads when the versions match, so switch
back the headers to XZ.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/linux-headers/linux-headers.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/linux-headers/linux-headers.mk b/package/linux-headers/linux-headers.mk
index 9d7a683..30d3076 100644
--- a/package/linux-headers/linux-headers.mk
+++ b/package/linux-headers/linux-headers.mk
@@ -13,7 +13,7 @@ LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6/
 else
 LINUX_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x/
 endif
-LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.bz2
+LINUX_HEADERS_SOURCE = linux-$(LINUX_HEADERS_VERSION).tar.xz
 
 LINUX_HEADERS_INSTALL_STAGING = YES
 
-- 
1.8.1.5

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

* [Buildroot] [PATCH] linux-headers: switch to xz format
  2013-07-04 10:50 [Buildroot] [PATCH] linux-headers: switch to xz format Gustavo Zacarias
@ 2013-07-04 11:31 ` Peter Korsgaard
  2013-07-04 13:35 ` Thomas Petazzoni
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2013-07-04 11:31 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> The headers and kernels where changed to XZ format on commit
 Gustavo> 98b5cc3eb4d4103b2149325b98a5e93e68c68dd8, but the headers reverted back
 Gustavo> to bz2 on the packaging of the toolchain.
 Gustavo> This causes double kernel downloads when the versions match, so switch
 Gustavo> back the headers to XZ.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] linux-headers: switch to xz format
  2013-07-04 10:50 [Buildroot] [PATCH] linux-headers: switch to xz format Gustavo Zacarias
  2013-07-04 11:31 ` Peter Korsgaard
@ 2013-07-04 13:35 ` Thomas Petazzoni
  2013-07-04 13:38   ` Gustavo Zacarias
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2013-07-04 13:35 UTC (permalink / raw)
  To: buildroot

Dear Gustavo Zacarias,

On Thu,  4 Jul 2013 07:50:38 -0300, Gustavo Zacarias wrote:
> The headers and kernels where changed to XZ format on commit
> 98b5cc3eb4d4103b2149325b98a5e93e68c68dd8, but the headers reverted back
> to bz2 on the packaging of the toolchain.

Gaah, thanks, indeed. Sorry for the mis-merge, it has been quite
challenging to rebase my toolchain changes, since it was each time
causing huge conflicts, amongst which it was hard to make sure I
re-applied all the changes that had been made on toolchain/.

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH] linux-headers: switch to xz format
  2013-07-04 13:35 ` Thomas Petazzoni
@ 2013-07-04 13:38   ` Gustavo Zacarias
  2013-07-04 13:40     ` Thomas Petazzoni
  0 siblings, 1 reply; 5+ messages in thread
From: Gustavo Zacarias @ 2013-07-04 13:38 UTC (permalink / raw)
  To: buildroot

On 07/04/2013 10:35 AM, Thomas Petazzoni wrote:
> Gaah, thanks, indeed. Sorry for the mis-merge, it has been quite
> challenging to rebase my toolchain changes, since it was each time
> causing huge conflicts, amongst which it was hard to make sure I
> re-applied all the changes that had been made on toolchain/.

No problem, it was better to apply it and get it rolling for the border
cases.
I personally didn't have time to test it before.
I'll be sending some other toolchain patches that i didn't send before
to avoid stalling the toolchain packaging since it was long overdue, and
they're simple so no sweat in rebasing them.
Regards.

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

* [Buildroot] [PATCH] linux-headers: switch to xz format
  2013-07-04 13:38   ` Gustavo Zacarias
@ 2013-07-04 13:40     ` Thomas Petazzoni
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2013-07-04 13:40 UTC (permalink / raw)
  To: buildroot

Dear Gustavo Zacarias,

On Thu, 04 Jul 2013 10:38:17 -0300, Gustavo Zacarias wrote:

> No problem, it was better to apply it and get it rolling for the border
> cases.
> I personally didn't have time to test it before.
> I'll be sending some other toolchain patches that i didn't send before
> to avoid stalling the toolchain packaging since it was long overdue, and
> they're simple so no sweat in rebasing them.

Great thanks. Looking forward to see your toolchain patches. Hopefully,
you'll find the new stuff a bit easier to work with than the old
toolchain/ code.

Best regards,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

end of thread, other threads:[~2013-07-04 13:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-04 10:50 [Buildroot] [PATCH] linux-headers: switch to xz format Gustavo Zacarias
2013-07-04 11:31 ` Peter Korsgaard
2013-07-04 13:35 ` Thomas Petazzoni
2013-07-04 13:38   ` Gustavo Zacarias
2013-07-04 13:40     ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox