All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] linux-yocto/3.0: update BSP descriptions
@ 2012-06-27 15:25 Bruce Ashfield
  2012-06-27 15:25 ` [PATCH 1/1] linux-yocto/3.0: update BSP descriptions to new kern-tools format Bruce Ashfield
  2012-06-28 17:15 ` [PATCH 0/1] linux-yocto/3.0: update BSP descriptions Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Bruce Ashfield @ 2012-06-27 15:25 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core, saul.wold

Saul,

Here's the fix for the 3.0 mpc 8360 build issue on the autobuilder.
A few boards were missed when updating the BSP descriptions to a new
format. This completes the effort.

On a related note, we'll bump this to 3.4 support shortly so the tweak
to the meta data is the best short term fix.

Cheers,

Bruce    
    
The following changes since commit fae565d2bc9090cbb083d44ea5de6b2b80622118:

  linux-yocto/3.4: -rt build fixes + configuration audit (part2) (2012-06-26 14:34:22 -0400)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib zedd/3.0-fix
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/3.0-fix

Bruce Ashfield (1):
  linux-yocto/3.0: update BSP descriptions to new kern-tools format

 meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb |    2 +-
 meta/recipes-kernel/linux/linux-yocto_3.0.bb    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
1.7.5.4




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

* [PATCH 1/1] linux-yocto/3.0: update BSP descriptions to new kern-tools format
  2012-06-27 15:25 [PATCH 0/1] linux-yocto/3.0: update BSP descriptions Bruce Ashfield
@ 2012-06-27 15:25 ` Bruce Ashfield
  2012-06-28 17:15 ` [PATCH 0/1] linux-yocto/3.0: update BSP descriptions Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Bruce Ashfield @ 2012-06-27 15:25 UTC (permalink / raw)
  To: richard.purdie; +Cc: openembedded-core, saul.wold

In tree linux-yocto 3.0 boards indicate that they are BSPs via
the older/obsolete syntax "scc_leaf". This line in their board
description is detected by the build process and is used to find
the BSP description and the kernel type they use as their base.

To work with the latest kern tools, the BSP descriptions should
be updated to "include <ktype> branch <machine>" to acheive the
same result.

All trees newer than 3.0 already have this change and do not need
to be updated.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb |    2 +-
 meta/recipes-kernel/linux/linux-yocto_3.0.bb    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
index 971d1a8..1de0411 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb
@@ -10,7 +10,7 @@ KMETA = "meta"
 
 SRCREV_machine ?= "e67428d9966eecec4c081993dc64ceb5c0e64643"
 SRCREV_machine_qemuppc ?= "dcca458cb92cc287f70e4062f02460f36a881b16"
-SRCREV_meta ?= "46e8fc2bbbe73514e8d99101adaaa373f760ffa7"
+SRCREV_meta ?= "d282029891bba5440630a885b940dea5e34e3e2c"
 
 PR = "r2"
 PV = "${LINUX_VERSION}+git${SRCPV}"
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.0.bb b/meta/recipes-kernel/linux/linux-yocto_3.0.bb
index 5cdff95..362e65a 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.0.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.0.bb
@@ -18,7 +18,7 @@ SRCREV_machine_qemuppc ?= "bd9a3c4c066bd4b9f52b51aaaec9b029a7abe793"
 SRCREV_machine_qemux86 ?= "70342faea067476774eb55f4e3098af0bcc48782"
 SRCREV_machine_qemux86-64 ?= "cba836a545fbeb96f6f2392c3ecbac9d7735fa65"
 SRCREV_machine ?= "bd6ad607c754dea30d91502a237870b4c45e0f1b"
-SRCREV_meta ?= "46e8fc2bbbe73514e8d99101adaaa373f760ffa7"
+SRCREV_meta ?= "d282029891bba5440630a885b940dea5e34e3e2c"
 
 PR = "r4"
 PV = "${LINUX_VERSION}+git${SRCPV}"
-- 
1.7.5.4




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

* Re: [PATCH 0/1] linux-yocto/3.0: update BSP descriptions
  2012-06-27 15:25 [PATCH 0/1] linux-yocto/3.0: update BSP descriptions Bruce Ashfield
  2012-06-27 15:25 ` [PATCH 1/1] linux-yocto/3.0: update BSP descriptions to new kern-tools format Bruce Ashfield
@ 2012-06-28 17:15 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-06-28 17:15 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 06/27/2012 08:25 AM, Bruce Ashfield wrote:
> Saul,
>
> Here's the fix for the 3.0 mpc 8360 build issue on the autobuilder.
> A few boards were missed when updating the BSP descriptions to a new
> format. This completes the effort.
>
> On a related note, we'll bump this to 3.4 support shortly so the tweak
> to the meta data is the best short term fix.
>
> Cheers,
>
> Bruce
>
> The following changes since commit fae565d2bc9090cbb083d44ea5de6b2b80622118:
>
>    linux-yocto/3.4: -rt build fixes + configuration audit (part2) (2012-06-26 14:34:22 -0400)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib zedd/3.0-fix
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/3.0-fix
>
> Bruce Ashfield (1):
>    linux-yocto/3.0: update BSP descriptions to new kern-tools format
>
>   meta/recipes-kernel/linux/linux-yocto-rt_3.0.bb |    2 +-
>   meta/recipes-kernel/linux/linux-yocto_3.0.bb    |    2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
>

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2012-06-28 17:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-27 15:25 [PATCH 0/1] linux-yocto/3.0: update BSP descriptions Bruce Ashfield
2012-06-27 15:25 ` [PATCH 1/1] linux-yocto/3.0: update BSP descriptions to new kern-tools format Bruce Ashfield
2012-06-28 17:15 ` [PATCH 0/1] linux-yocto/3.0: update BSP descriptions 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.