From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yh0-f48.google.com (mail-yh0-f48.google.com [209.85.213.48]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 1DB37E007A0 for ; Tue, 10 Dec 2013 19:52:54 -0800 (PST) Received: by mail-yh0-f48.google.com with SMTP id f73so4674379yha.35 for ; Tue, 10 Dec 2013 19:52:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=sj+DOjgCZfvVOX/rqureLVCaWAShsWnefGH/9LU2vRY=; b=0N3AK6oq4J180/BoLS08pV/1TyE702TaWcM3q7mWtLQ70o7XkiYDarnpY4pwzdUXxb FHkixnDe+YsHVqBbOEC39rryoTGJ8FIoeCIp7OwFKuIVmY/hc1ETI+BgDOqBJriNc81G I/C5jroVvcwWVALm1bywlNz2tdqRta+lbjzXqCbo3GhNau3KF11OTVTj/RRxl74XWsk4 7NpGxKkeBR2jmNlAAgghcIbb4Z26VDzHa+tMHyLUg2j0hmryd9snFB/P5NRypQrHpDe8 kvzCxBtmZfuQRqWT/72bxQ3TUveENxc7tpbilgYBfsxv2sQdSy0MOLvYDdeQaT/LBvuB DqrQ== X-Received: by 10.236.74.73 with SMTP id w49mr3971856yhd.87.1386733973734; Tue, 10 Dec 2013 19:52:53 -0800 (PST) Received: from goober.local ([75.76.228.60]) by mx.google.com with ESMTPSA id q9sm26025763yhk.16.2013.12.10.19.52.52 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 10 Dec 2013 19:52:52 -0800 (PST) Message-ID: <52A7E194.40503@gmail.com> Date: Tue, 10 Dec 2013 21:52:52 -0600 From: John Weber User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 MIME-Version: 1.0 To: meta-freescale@yoctoproject.org References: <1386712430-27534-1-git-send-email-philip@balister.org> <1386712430-27534-4-git-send-email-philip@balister.org> In-Reply-To: <1386712430-27534-4-git-send-email-philip@balister.org> Subject: Re: [meta-fsl-arm-extra][PATCH v2 4/4] linux-wandboard : Use SRCBRANCH instead of GITBRANCH. X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 03:52:59 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 12/10/13 3:53 PM, Philip Balister wrote: > Be consistent across all recipes. > > Signed-off-by: Philip Balister > --- > recipes-kernel/linux/linux-wandboard.inc | 4 ++-- > recipes-kernel/linux/linux-wandboard_3.0.35.bb | 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/recipes-kernel/linux/linux-wandboard.inc b/recipes-kernel/linux/linux-wandboard.inc > index fa73b4a..57e5517 100644 > --- a/recipes-kernel/linux/linux-wandboard.inc > +++ b/recipes-kernel/linux/linux-wandboard.inc > @@ -11,10 +11,10 @@ require recipes-kernel/linux/linux-imx.inc > LOCALVERSION ?= "+yocto" > SCMVERSION ?= "y" > > -GITBRANCH ??= "master" > +SRCBRANCH ??= "master" > > # SRC_URI for wandboard kernel > -SRC_URI = "git://github.com/wandboard-org/linux.git;branch=${GITBRANCH} \ > +SRC_URI = "git://github.com/wandboard-org/linux.git;branch=${SRCBRANCH} \ > file://defconfig \ > " > > diff --git a/recipes-kernel/linux/linux-wandboard_3.0.35.bb b/recipes-kernel/linux/linux-wandboard_3.0.35.bb > index fc4fea4..b443d42 100644 > --- a/recipes-kernel/linux/linux-wandboard_3.0.35.bb > +++ b/recipes-kernel/linux/linux-wandboard_3.0.35.bb > @@ -4,7 +4,7 @@ > include linux-wandboard.inc > > # Wandboard branch - based on 4.0.0 from Freescale git > -GITBRANCH = "wandboard_imx_3.0.35_4.0.0" > +SRCBRANCH = "wandboard_imx_3.0.35_4.0.0" > SRCREV = "d35902c77a077a25e4dfedc6aac11ba49c52c586" > LOCALVERSION = "-4.0.0-wandboard" > Fine by me.