From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f170.google.com (mail-pd0-f170.google.com [209.85.192.170]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 847F3E007C2 for ; Fri, 6 Dec 2013 16:20:56 -0800 (PST) Received: by mail-pd0-f170.google.com with SMTP id g10so1885584pdj.29 for ; Fri, 06 Dec 2013 16:20:56 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=yUt15IOHGBgyqjgXgRwMGyCP/rHkEUOofSLY6INU91g=; b=AqaaATpPlecxYUqH28ghuPQZr0mCwGi06y+lvtYY3laPSUhmlPP7ahiCZHd0OM2/7T whHTtflqz2HD8V6afgzjmSExDcQjlgtNO1/UlS2fMgRwIuLB0fhxh1E+10INUmy0sQKb Y5+w+RargzSvVEX1CMbaEgyteCCchZ7zO8+K0zDZoYYIFZ4kwV3Q083gHCM25A12ON+X ogxF3YqWJCLXvdBuiUgI4IFCHKa9ZhrFrG4+TpfBTMorP10/HK7Ps/r7z0kSKzFNvW/P V3SCmBo5iov50tZ/Tl9Fviho7k48AyK8I0otrPC3vCfwQvbwAd/Ob1mbq9BDrgGvqvpp KmmQ== X-Gm-Message-State: ALoCoQlUmlYUXFyVqRNbsaEbPA8vkOzbcxRro3jUaLt7IQyG6Jn220qbiPzsiM1nRbd1Kg2WbgT7 X-Received: by 10.68.17.7 with SMTP id k7mr7152451pbd.119.1386375655997; Fri, 06 Dec 2013 16:20:55 -0800 (PST) Received: from [192.168.0.53] ([63.226.49.26]) by mx.google.com with ESMTPSA id de1sm342370pbc.7.2013.12.06.16.20.53 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 06 Dec 2013 16:20:54 -0800 (PST) Message-ID: <52A269E4.4040306@boundarydevices.com> Date: Fri, 06 Dec 2013 17:20:52 -0700 From: Eric Nelson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 MIME-Version: 1.0 To: Gary Thomas , meta-freescale@yoctoproject.org References: <1386355878-11565-1-git-send-email-gary@mlbassoc.com> In-Reply-To: <1386355878-11565-1-git-send-email-gary@mlbassoc.com> Subject: Re: [PATCH] More changes for git fetchers 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: Sat, 07 Dec 2013 00:20:57 -0000 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hi Gary, On 12/06/2013 11:51 AM, Gary Thomas wrote: > Recipes now need to explicitly mention the branch used for git repositories. > These changes reflect this, allowing for the branch to be overridden by > .bbappend files > > Signed-off-by: Gary Thomas > > --- > recipes-bsp/u-boot/u-boot-boundary_git.bb | 3 ++- > recipes-bsp/u-boot/u-boot-script-boundary_git.bb | 3 ++- > recipes-kernel/linux/linux-boundary_3.0.35.bb | 4 ++-- > 3 files changed, 6 insertions(+), 4 deletions(-) > > diff --git a/recipes-bsp/u-boot/u-boot-boundary_git.bb b/recipes-bsp/u-boot/u-boot-boundary_git.bb > index f612b3f..323cfdf 100644 > --- a/recipes-bsp/u-boot/u-boot-boundary_git.bb > +++ b/recipes-bsp/u-boot/u-boot-boundary_git.bb > @@ -9,7 +9,8 @@ PROVIDES = "u-boot" > PV = "v2013.07+git${SRCPV}" > > SRCREV = "f89bc066db0569008418fac1a0408a9a57f2232f" > -SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git" > +SRCBRANCH = "production-before-20131107" > +SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git;branch=${SRCBRANCH}" > > S = "${WORKDIR}/git" > I'm not quite grokking why both the branch and the SRCREV are needed. It seems that SRCREV is more specific than the branch. > diff --git a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb > index 06ad438..d14e094 100644 > --- a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb > +++ b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb > @@ -6,7 +6,8 @@ DEPENDS = "u-boot-mkimage-native" > PV = "v2013.01+git${SRCPV}" > > SRCREV = "f89bc066db0569008418fac1a0408a9a57f2232f" > -SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git" > +SRCBRANCH = "production-before-20131107" > +SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git;branch=${SRCBRANCH}" > > S = "${WORKDIR}/git" > > diff --git a/recipes-kernel/linux/linux-boundary_3.0.35.bb b/recipes-kernel/linux/linux-boundary_3.0.35.bb > index 7875f93..872cab2 100644 > --- a/recipes-kernel/linux/linux-boundary_3.0.35.bb > +++ b/recipes-kernel/linux/linux-boundary_3.0.35.bb > @@ -5,12 +5,12 @@ require recipes-kernel/linux/linux-imx.inc > > DESCRIPTION = "Linux kernel for Boundary Devices boards" > > -SRC_URI = "git://github.com/boundarydevices/linux-imx6.git \ > +SRC_URI = "git://github.com/boundarydevices/linux-imx6.git;branch=${SRCBRANCH} \ > file://defconfig" > > LOCALVERSION = "-4.1.0+yocto" > SRCREV = "58099389255add7c17ce6babf37a50ce5d11d6b8" > - > +SRCBRANCH = "boundary-imx_3.0.35_4.1.0" > > # GPU support patches > SRC_URI += "file://drm-vivante-Add-00-sufix-in-returned-bus-Id.patch \ > BTW, I need to update both of these (U-Boot and 3.0.35 kernel), as we have some patches I think most folks will want. Regards, Eric