From patchwork Tue Oct 1 18:06:29 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Nelson X-Patchwork-Id: 279554 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 7069F2C0097 for ; Wed, 2 Oct 2013 04:06:48 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 65FEC33354; Tue, 1 Oct 2013 18:06:47 +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 A3DD2hJybjoN; Tue, 1 Oct 2013 18:06:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 7CAC9332F8; Tue, 1 Oct 2013 18:06:36 +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 AD4D51BF9AA for ; Tue, 1 Oct 2013 18:06:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id A6EBB8CADF for ; Tue, 1 Oct 2013 18:06:33 +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 eCaUYtldhiFp for ; Tue, 1 Oct 2013 18:06:32 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.integraonline.com (relay3.integra.net [204.130.255.182]) by whitealder.osuosl.org (Postfix) with SMTP id 926A58C6B9 for ; Tue, 1 Oct 2013 18:06:32 +0000 (UTC) Received: (qmail 18542 invoked from network); 1 Oct 2013 18:06:31 -0000 Received: from unknown (HELO ericsam.example.org) (70.96.116.236) by relay3.integra.net with SMTP; 1 Oct 2013 18:06:31 -0000 From: Eric Nelson To: buildroot@busybox.net Date: Tue, 1 Oct 2013 11:06:29 -0700 Message-Id: <1380650790-18097-2-git-send-email-eric.nelson@boundarydevices.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1380650790-18097-1-git-send-email-eric.nelson@boundarydevices.com> References: <1380650790-18097-1-git-send-email-eric.nelson@boundarydevices.com> Cc: jacmet@uclibc.org Subject: [Buildroot] [PATCH 1/2] freescale-imx: separate variable assignment from Makefile 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 This patch pulls the variable assignments for the site and version from freescale-imx.mk and places them into freescale-imx.inc so they can be used by components in other trees (e.g. gstreamer plugins). Signed-off-by: Eric Nelson --- package/freescale-imx/freescale-imx.inc | 9 +++++++++ package/freescale-imx/freescale-imx.mk | 6 +----- 2 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 package/freescale-imx/freescale-imx.inc diff --git a/package/freescale-imx/freescale-imx.inc b/package/freescale-imx/freescale-imx.inc new file mode 100644 index 0000000..51709f4 --- /dev/null +++ b/package/freescale-imx/freescale-imx.inc @@ -0,0 +1,9 @@ +################################################################################ +# +# Set freescale-imx variables to make it easy to align versions of various +# packages +# +################################################################################ +FREESCALE_IMX_VERSION = 3.5.7-1.0.0 +FREESCALE_IMX_SITE = http://www.freescale.com/lgfiles/NMG/MAD/YOCTO/ + diff --git a/package/freescale-imx/freescale-imx.mk b/package/freescale-imx/freescale-imx.mk index 2762972..46f4ddb 100644 --- a/package/freescale-imx/freescale-imx.mk +++ b/package/freescale-imx/freescale-imx.mk @@ -4,9 +4,5 @@ # ################################################################################ -FREESCALE_IMX_VERSION = 3.5.7-1.0.0 - -FREESCALE_IMX_SITE = http://www.freescale.com/lgfiles/NMG/MAD/YOCTO/ -#FREESCALE_IMX_MIRROR_SITE = http://download.ossystems.com.br/bsp/freescale/source - +include package/freescale-imx/freescale-imx.inc include $(sort $(wildcard package/freescale-imx/*/*.mk))