All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-fsl-arm-extra][PATCH] More changes for git fetchers
@ 2013-12-10 16:50 Gary Thomas
  2013-12-11 10:14 ` Otavio Salvador
  0 siblings, 1 reply; 4+ messages in thread
From: Gary Thomas @ 2013-12-10 16:50 UTC (permalink / raw)
  To: meta-freescale; +Cc: Gary Thomas

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 <gary@mlbassoc.com>
---
 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"
 
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 \
-- 
1.7.9.5



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

* Re: [meta-fsl-arm-extra][PATCH] More changes for git fetchers
  2013-12-10 16:50 [meta-fsl-arm-extra][PATCH] More changes for git fetchers Gary Thomas
@ 2013-12-11 10:14 ` Otavio Salvador
  2013-12-11 11:14   ` Gary Thomas
  0 siblings, 1 reply; 4+ messages in thread
From: Otavio Salvador @ 2013-12-11 10:14 UTC (permalink / raw)
  To: Gary Thomas; +Cc: meta-freescale

Hello,

On Tue, Dec 10, 2013 at 2:50 PM, Gary Thomas <gary@mlbassoc.com> 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 <gary@mlbassoc.com>

I opted to apply Philip changes (in its last revision which included
SRCBRANCH) as it were split in several commits and with a specific
commit log for each, which is more in line on how we do the commit
logs usually.

Please check if anything is missing at your side and let me know.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [meta-fsl-arm-extra][PATCH] More changes for git fetchers
  2013-12-11 10:14 ` Otavio Salvador
@ 2013-12-11 11:14   ` Gary Thomas
  2013-12-11 11:29     ` Otavio Salvador
  0 siblings, 1 reply; 4+ messages in thread
From: Gary Thomas @ 2013-12-11 11:14 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: meta-freescale

On 2013-12-11 03:14, Otavio Salvador wrote:
> Hello,
>
> On Tue, Dec 10, 2013 at 2:50 PM, Gary Thomas <gary@mlbassoc.com> 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 <gary@mlbassoc.com>
>
> I opted to apply Philip changes (in its last revision which included
> SRCBRANCH) as it were split in several commits and with a specific
> commit log for each, which is more in line on how we do the commit
> logs usually.
>
> Please check if anything is missing at your side and let me know.
>

These are all fine, thanks.

n.b. I'm not so sure about the multiple commits since they are all
for the same reason.  Splitting them up would make it harder for
someone in the future to make sure they found all the related changes
if they wanted to.  No worries.

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

* Re: [meta-fsl-arm-extra][PATCH] More changes for git fetchers
  2013-12-11 11:14   ` Gary Thomas
@ 2013-12-11 11:29     ` Otavio Salvador
  0 siblings, 0 replies; 4+ messages in thread
From: Otavio Salvador @ 2013-12-11 11:29 UTC (permalink / raw)
  To: Gary Thomas; +Cc: meta-freescale

On Wed, Dec 11, 2013 at 9:14 AM, Gary Thomas <gary@mlbassoc.com> wrote:
> On 2013-12-11 03:14, Otavio Salvador wrote:
>>
>> Hello,
>>
>> On Tue, Dec 10, 2013 at 2:50 PM, Gary Thomas <gary@mlbassoc.com> 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 <gary@mlbassoc.com>
>>
>>
>> I opted to apply Philip changes (in its last revision which included
>> SRCBRANCH) as it were split in several commits and with a specific
>> commit log for each, which is more in line on how we do the commit
>> logs usually.
>>
>> Please check if anything is missing at your side and let me know.
>>
>
> These are all fine, thanks.
>
> n.b. I'm not so sure about the multiple commits since they are all
> for the same reason.  Splitting them up would make it harder for
> someone in the future to make sure they found all the related changes
> if they wanted to.  No worries.

This is preferred so if we need to revert something we can do it in a
specific commit.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

end of thread, other threads:[~2013-12-11 11:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-10 16:50 [meta-fsl-arm-extra][PATCH] More changes for git fetchers Gary Thomas
2013-12-11 10:14 ` Otavio Salvador
2013-12-11 11:14   ` Gary Thomas
2013-12-11 11:29     ` Otavio Salvador

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.