All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] u-boot: update SRCREV to 2011.03
@ 2011-05-18 22:05 Darren Hart
  2011-05-18 22:05 ` [PATCH 1/1] " Darren Hart
  2011-05-20  1:23 ` [PATCH 0/1] " Saul Wold
  0 siblings, 2 replies; 5+ messages in thread
From: Darren Hart @ 2011-05-18 22:05 UTC (permalink / raw)
  To: openembedded-core; +Cc: Robert Berger, Yi Zhao

From: Darren Hart <dvhart@linux.intel.com>

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: dvhart/beagle
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/beagle

Thanks,
    Darren Hart <dvhart@linux.intel.com>
---


Darren Hart (1):
  u-boot: update SRCREV to 2011.03

 meta/recipes-bsp/uboot/u-boot_git.bb |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)




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

* [PATCH 1/1] u-boot: update SRCREV to 2011.03
  2011-05-18 22:05 [PATCH 0/1] u-boot: update SRCREV to 2011.03 Darren Hart
@ 2011-05-18 22:05 ` Darren Hart
  2011-05-20  1:23 ` [PATCH 0/1] " Saul Wold
  1 sibling, 0 replies; 5+ messages in thread
From: Darren Hart @ 2011-05-18 22:05 UTC (permalink / raw)
  To: openembedded-core; +Cc: Robert Berger, Yi Zhao

From: Darren Hart <dvhart@linux.intel.com>

Fixes [YOCTO 1029]

u-boot 2010.12 fails to run on the Beagleboard C4 and xM Rev A boards.  Commit
55aacbc30e48f6f8a73fb989a58625e70887bc01 suggests there was a mixup during
development, as the MD5SUM change is from the 2011.03 SRCREV back to the
2010.12. Chances are a patch was never sent to update the SRCREV, leaving the
MD5SUM in a bad state.

Update the SRCREV and COPYING MD5SUM to use the 2011.03 version. Built
and tested on Beagleboard xM Rev A and Beagleboard Rev C4.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Tested-by: Jeff Osier-Mixon <jefro@jefro.net>
Cc: Jeff Osier-Mixon <jefro@jefro.net>
Cc: Yi Zhao <yi.zhao@windriver.com>
Cc: Robert Berger <pokylinux@reliableembeddedsystems.com>
Cc: Gary Thomas <gary@mlbassoc.com>
---
 meta/recipes-bsp/uboot/u-boot_git.bb |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-bsp/uboot/u-boot_git.bb b/meta/recipes-bsp/uboot/u-boot_git.bb
index d8c196a..c5583ff 100644
--- a/meta/recipes-bsp/uboot/u-boot_git.bb
+++ b/meta/recipes-bsp/uboot/u-boot_git.bb
@@ -1,14 +1,14 @@
 require u-boot.inc
 
 LICENSE = "GPLv2+"
-LIC_FILES_CHKSUM = "file://COPYING;md5=4c6cde5df68eff615d36789dc18edd3b \
+LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb \
                     file://README;beginline=1;endline=22;md5=3a00ef51d3fc96e9d6c1bc4708ccd3b5"
 
 FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/u-boot-git/${MACHINE}"
 
-SRCREV = "v2010.12"
-PV = "v2010.12+${PR}+git${SRCPV}"
-PR="r2"
+SRCREV = "v2011.03"
+PV = "v2011.03+${PR}+git${SRCPV}"
+PR="r3"
 
 SRC_URI = "git://git.denx.de/u-boot.git;branch=master;protocol=git"
 
-- 
1.7.1




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

* Re: [PATCH 0/1] u-boot: update SRCREV to 2011.03
  2011-05-18 22:05 [PATCH 0/1] u-boot: update SRCREV to 2011.03 Darren Hart
  2011-05-18 22:05 ` [PATCH 1/1] " Darren Hart
@ 2011-05-20  1:23 ` Saul Wold
  2011-05-20  1:55   ` Darren Hart
  1 sibling, 1 reply; 5+ messages in thread
From: Saul Wold @ 2011-05-20  1:23 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer
  Cc: Robert Berger, Darren Hart, Yi Zhao

On 05/18/2011 03:05 PM, Darren Hart wrote:
> From: Darren Hart<dvhart@linux.intel.com>
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>    Branch: dvhart/beagle
>    Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/beagle
>
> Thanks,
>      Darren Hart<dvhart@linux.intel.com>
> ---
>
>
> Darren Hart (1):
>    u-boot: update SRCREV to 2011.03
>
>   meta/recipes-bsp/uboot/u-boot_git.bb |    8 ++++----
>   1 files changed, 4 insertions(+), 4 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
Pulled, but it had a problem with MD5SUM for the readme!

I did not catch that as I should have, I have an updated recipe and will 
send it up in tonight's pull request.

Sau!




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

* Re: [PATCH 0/1] u-boot: update SRCREV to 2011.03
  2011-05-20  1:23 ` [PATCH 0/1] " Saul Wold
@ 2011-05-20  1:55   ` Darren Hart
  2011-05-20  3:07     ` Saul Wold
  0 siblings, 1 reply; 5+ messages in thread
From: Darren Hart @ 2011-05-20  1:55 UTC (permalink / raw)
  To: Saul Wold
  Cc: Robert Berger, Yi Zhao, Patches and discussions about the oe-core layer



On 05/19/2011 06:23 PM, Saul Wold wrote:
> On 05/18/2011 03:05 PM, Darren Hart wrote:
>> From: Darren Hart<dvhart@linux.intel.com>
>>
>> Pull URL: git://git.pokylinux.org/poky-contrib.git
>>    Branch: dvhart/beagle
>>    Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/beagle
>>
>> Thanks,
>>      Darren Hart<dvhart@linux.intel.com>
>> ---
>>
>>
>> Darren Hart (1):
>>    u-boot: update SRCREV to 2011.03
>>
>>   meta/recipes-bsp/uboot/u-boot_git.bb |    8 ++++----
>>   1 files changed, 4 insertions(+), 4 deletions(-)
>>
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>>
> Pulled, but it had a problem with MD5SUM for the readme!
> 
> I did not catch that as I should have, I have an updated recipe and will 
> send it up in tonight's pull request.

This built for me as is, I'm curious what would have triggered a
problem. In particular, if my testing process is broken, I want to fix it.

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel



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

* Re: [PATCH 0/1] u-boot: update SRCREV to 2011.03
  2011-05-20  1:55   ` Darren Hart
@ 2011-05-20  3:07     ` Saul Wold
  0 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2011-05-20  3:07 UTC (permalink / raw)
  To: Darren Hart
  Cc: Robert Berger, Yi Zhao, Patches and discussions about the oe-core layer

On 05/19/2011 06:55 PM, Darren Hart wrote:
>
>
> On 05/19/2011 06:23 PM, Saul Wold wrote:
>> On 05/18/2011 03:05 PM, Darren Hart wrote:
>>> From: Darren Hart<dvhart@linux.intel.com>
>>>
>>> Pull URL: git://git.pokylinux.org/poky-contrib.git
>>>     Branch: dvhart/beagle
>>>     Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dvhart/beagle
>>>
>>> Thanks,
>>>       Darren Hart<dvhart@linux.intel.com>
>>> ---
>>>
>>>
>>> Darren Hart (1):
>>>     u-boot: update SRCREV to 2011.03
>>>
>>>    meta/recipes-bsp/uboot/u-boot_git.bb |    8 ++++----
>>>    1 files changed, 4 insertions(+), 4 deletions(-)
>>>
>>>
>>> _______________________________________________
>>> Openembedded-core mailing list
>>> Openembedded-core@lists.openembedded.org
>>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>>>
>> Pulled, but it had a problem with MD5SUM for the readme!
>>
>> I did not catch that as I should have, I have an updated recipe and will
>> send it up in tonight's pull request.
>
> This built for me as is, I'm curious what would have triggered a
> problem. In particular, if my testing process is broken, I want to fix it.
>
Take a look at the autobuilder n-1 build is read, see what you think, 
looks the both COPYING and the README changed.

Sau!




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

end of thread, other threads:[~2011-05-20  3:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-18 22:05 [PATCH 0/1] u-boot: update SRCREV to 2011.03 Darren Hart
2011-05-18 22:05 ` [PATCH 1/1] " Darren Hart
2011-05-20  1:23 ` [PATCH 0/1] " Saul Wold
2011-05-20  1:55   ` Darren Hart
2011-05-20  3:07     ` Saul Wold

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.