All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] linux-yocto: fix machine compatibility lists
@ 2010-12-13  6:27 Bruce Ashfield
  2010-12-13  6:27 ` [PATCH 1/1] linux-yocto: fix machine compatibility Bruce Ashfield
  2010-12-13 18:35 ` [PATCH 0/1] linux-yocto: fix machine compatibility lists Saul Wold
  0 siblings, 2 replies; 3+ messages in thread
From: Bruce Ashfield @ 2010-12-13  6:27 UTC (permalink / raw)
  To: rpurdie, saul.wold; +Cc: yocto, poky

During the last phase of the recipe factoring, the board compatibility
lists ended up in the wrong place, which meant we had an incomplete
list of boards, and the same set of boards for both kernels (stable
and devel).

To fix this, I've yanked the compatibility to the recipes themselves and
updated the emenlow to have a -stable bbappend.

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

Thanks,
    Bruce Ashfield <bruce.ashfield@windriver.com>
---


Bruce Ashfield (1):
  linux-yocto: fix machine compatibility

 ...it.bbappend => linux-yocto-stable_git.bbappend} |    0
 .../recipes-kernel/linux/linux-yocto-stable_git.bb |    2 ++
 meta/recipes-kernel/linux/linux-yocto.inc          |    2 --
 meta/recipes-kernel/linux/linux-yocto_git.bb       |    1 +
 4 files changed, 3 insertions(+), 2 deletions(-)
 rename meta-emenlow/recipes/linux/{linux-yocto_git.bbappend => linux-yocto-stable_git.bbappend} (100%)



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

* [PATCH 1/1] linux-yocto: fix machine compatibility
  2010-12-13  6:27 [PATCH 0/1] linux-yocto: fix machine compatibility lists Bruce Ashfield
@ 2010-12-13  6:27 ` Bruce Ashfield
  2010-12-13 18:35 ` [PATCH 0/1] linux-yocto: fix machine compatibility lists Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Bruce Ashfield @ 2010-12-13  6:27 UTC (permalink / raw)
  To: rpurdie, saul.wold; +Cc: yocto, poky

During the last phase of the recipe factoring, the board compatibility
lists ended up in the wrong place, which meant we had an incomplete
list of boards, and the same set of boards for both kernels (stable
and devel).

To fix this, I've yanked the compatibility to the recipes themselves and
updated the emenlow to have a -stable bbappend.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
 ...it.bbappend => linux-yocto-stable_git.bbappend} |    0
 .../recipes-kernel/linux/linux-yocto-stable_git.bb |    2 ++
 meta/recipes-kernel/linux/linux-yocto.inc          |    2 --
 meta/recipes-kernel/linux/linux-yocto_git.bb       |    1 +
 4 files changed, 3 insertions(+), 2 deletions(-)
 rename meta-emenlow/recipes/linux/{linux-yocto_git.bbappend => linux-yocto-stable_git.bbappend} (100%)

diff --git a/meta-emenlow/recipes/linux/linux-yocto_git.bbappend b/meta-emenlow/recipes/linux/linux-yocto-stable_git.bbappend
similarity index 100%
rename from meta-emenlow/recipes/linux/linux-yocto_git.bbappend
rename to meta-emenlow/recipes/linux/linux-yocto-stable_git.bbappend
diff --git a/meta/recipes-kernel/linux/linux-yocto-stable_git.bb b/meta/recipes-kernel/linux/linux-yocto-stable_git.bb
index 8ecd86f..dd4d176 100644
--- a/meta/recipes-kernel/linux/linux-yocto-stable_git.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-stable_git.bb
@@ -17,6 +17,8 @@ PR = "r0"
 PV = "${LINUX_VERSION}+git${SRCPV}"
 SRCREV_FORMAT = "meta_machine"
 
+COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64|atom-pc|routerstationpro|mpc8315e-rdb|beagleboard)"
+
 # this performs a fixup on the SRCREV for new/undefined BSPs
 python __anonymous () {
     import bb, re
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc
index 095b337..2a77f4a 100644
--- a/meta/recipes-kernel/linux/linux-yocto.inc
+++ b/meta/recipes-kernel/linux/linux-yocto.inc
@@ -7,8 +7,6 @@ LICENSE = "GPL"
 # and it can be specific to the machine or shared
 KMACHINE = "UNDEFINED"
 
-COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64|atom-pc|routerstationpro)"
-
 # Set this to 'preempt_rt' in the local.conf if you want a real time kernel
 LINUX_KERNEL_TYPE ?= standard
 
diff --git a/meta/recipes-kernel/linux/linux-yocto_git.bb b/meta/recipes-kernel/linux/linux-yocto_git.bb
index 1e3df47..f40fe38 100644
--- a/meta/recipes-kernel/linux/linux-yocto_git.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_git.bb
@@ -20,6 +20,7 @@ SRCREV_FORMAT = "meta_machine"
 SRC_URI = "git://git.pokylinux.org/linux-yocto-2.6.37;protocol=git;fullclone=1;branch=${KBRANCH};name=machine \
            git://git.pokylinux.org/linux-yocto-2.6.37;protocol=git;noclone=1;branch=meta;name=meta"
 
+COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)"
 
 # Functionality flags
 KERNEL_REVISION_CHECKING ?= "t"
-- 
1.7.0.4



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

* Re: [PATCH 0/1] linux-yocto: fix machine compatibility lists
  2010-12-13  6:27 [PATCH 0/1] linux-yocto: fix machine compatibility lists Bruce Ashfield
  2010-12-13  6:27 ` [PATCH 1/1] linux-yocto: fix machine compatibility Bruce Ashfield
@ 2010-12-13 18:35 ` Saul Wold
  1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2010-12-13 18:35 UTC (permalink / raw)
  To: poky

On 12/12/2010 10:27 PM, Bruce Ashfield wrote:
> During the last phase of the recipe factoring, the board compatibility
> lists ended up in the wrong place, which meant we had an incomplete
> list of boards, and the same set of boards for both kernels (stable
> and devel).
>
> To fix this, I've yanked the compatibility to the recipes themselves and
> updated the emenlow to have a -stable bbappend.
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>    Branch: zedd/kernel
>    Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel
>
> Thanks,
>      Bruce Ashfield<bruce.ashfield@windriver.com>
> ---
>
>
> Bruce Ashfield (1):
>    linux-yocto: fix machine compatibility
>
>   ...it.bbappend =>  linux-yocto-stable_git.bbappend} |    0
>   .../recipes-kernel/linux/linux-yocto-stable_git.bb |    2 ++
>   meta/recipes-kernel/linux/linux-yocto.inc          |    2 --
>   meta/recipes-kernel/linux/linux-yocto_git.bb       |    1 +
>   4 files changed, 3 insertions(+), 2 deletions(-)
>   rename meta-emenlow/recipes/linux/{linux-yocto_git.bbappend =>  linux-yocto-stable_git.bbappend} (100%)
>
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
>
Bruce,

Thanks for the fast turn on these fixes, there are pulled into master 
and the 1.0 M2 branch.

Sau!


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

end of thread, other threads:[~2010-12-13 18:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-13  6:27 [PATCH 0/1] linux-yocto: fix machine compatibility lists Bruce Ashfield
2010-12-13  6:27 ` [PATCH 1/1] linux-yocto: fix machine compatibility Bruce Ashfield
2010-12-13 18:35 ` [PATCH 0/1] linux-yocto: fix machine compatibility lists 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.