From patchwork Fri May 10 17:36:50 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jerzy Grzegorek X-Patchwork-Id: 243050 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 6FA7D2C00D6 for ; Sat, 11 May 2013 03:37:21 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B0243317A5; Fri, 10 May 2013 17:37:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qZLokUJFEBom; Fri, 10 May 2013 17:37:15 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 1BAD931C26; Fri, 10 May 2013 17:37:14 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D9CBC8F7AC for ; Fri, 10 May 2013 17:37:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 585DB8CE8D for ; Fri, 10 May 2013 17:37:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id T65VG0j+ys5l for ; Fri, 10 May 2013 17:37:08 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from poczta.trzebnica.net (tasak.trzebnica.net [91.195.232.70]) by whitealder.osuosl.org (Postfix) with ESMTP id 6C3888CE50 for ; Fri, 10 May 2013 17:37:08 +0000 (UTC) Received: from localhost.localdomain (93-181-142-98.internetia.net.pl [93.181.142.98]) by poczta.trzebnica.net (Postfix) with ESMTP id 5A37537DD3; Fri, 10 May 2013 19:37:07 +0200 (CEST) From: Jerzy Grzegorek To: buildroot@busybox.net Date: Fri, 10 May 2013 19:36:50 +0200 Message-Id: <1368207410-9626-2-git-send-email-jerzy.grzegorek@trzebnica.net> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1368207410-9626-1-git-send-email-jerzy.grzegorek@trzebnica.net> References: <1368207410-9626-1-git-send-email-jerzy.grzegorek@trzebnica.net> Subject: [Buildroot] [PATCH v2 1/1] linux.mk: change the linux tarball compression to xz X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Jerzy Grzegorek --- linux/linux.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux/linux.mk b/linux/linux.mk index d375cf0..7ac147c 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -3,6 +3,7 @@ # Linux kernel target # ############################################################################### + LINUX_VERSION=$(call qstrip,$(BR2_LINUX_KERNEL_VERSION)) LINUX_LICENSE = GPLv2 LINUX_LICENSE_FILES = COPYING @@ -16,7 +17,7 @@ else ifeq ($(BR2_LINUX_KERNEL_CUSTOM_GIT),y) LINUX_SITE = $(call qstrip,$(BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL)) LINUX_SITE_METHOD = git else -LINUX_SOURCE = linux-$(LINUX_VERSION).tar.bz2 +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 3.1, # 2.6.32, 2.6.32-rc1, 3.0-rc6, etc.