* [PATCH 0/1] machine/qemu: set preferred linux-yocto kernel version
@ 2011-07-25 14:51 Bruce Ashfield
2011-07-25 14:51 ` [PATCH 1/1] " Bruce Ashfield
2011-07-28 0:16 ` [PATCH 0/1] " Saul Wold
0 siblings, 2 replies; 5+ messages in thread
From: Bruce Ashfield @ 2011-07-25 14:51 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core, saul.wold
The staging of the linux-yocto-3.0 kernel is taking
precedence over the 2.6.37 variant. We want the known
good 2.6.37 to still be the default for a while longer.
I'm making this change in qemu.inc, if anyone has a
better idea or alternate preferred approach, let me
know and we can update this change.
The following changes since commit b3dffd26d650444883a2563b25da420d96712e09:
Merge branch 'master' of git://git.pokylinux.org/poky (2011-07-25 09:03:19 -0400)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib zedd/kernel
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel
Bruce Ashfield (1):
machine/qemu: set preferred linux-yocto kernel version
meta/conf/machine/include/qemu.inc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
--
1.7.4.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] machine/qemu: set preferred linux-yocto kernel version
2011-07-25 14:51 [PATCH 0/1] machine/qemu: set preferred linux-yocto kernel version Bruce Ashfield
@ 2011-07-25 14:51 ` Bruce Ashfield
2011-07-25 14:56 ` Bruce Ashfield
2011-07-25 15:03 ` Koen Kooi
2011-07-28 0:16 ` [PATCH 0/1] " Saul Wold
1 sibling, 2 replies; 5+ messages in thread
From: Bruce Ashfield @ 2011-07-25 14:51 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core, saul.wold
The introduction of the linux-yocto-3.0 kernel is taking
precedence over the known working 2.6.37 version. Forcing
2.6.37 until 3.0 is validated on the qemu machines.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
meta/conf/machine/include/qemu.inc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/meta/conf/machine/include/qemu.inc b/meta/conf/machine/include/qemu.inc
index 9ef242f..c2d116f 100644
--- a/meta/conf/machine/include/qemu.inc
+++ b/meta/conf/machine/include/qemu.inc
@@ -12,6 +12,7 @@ RDEPENDS_kernel-base = ""
# Use a common kernel recipe for all QEMU machines
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
+PREFERRED_VERSION_linux-yocto = "2.6.37+git%"
#PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers-yocto"
EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native"
--
1.7.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] machine/qemu: set preferred linux-yocto kernel version
2011-07-25 14:51 ` [PATCH 1/1] " Bruce Ashfield
@ 2011-07-25 14:56 ` Bruce Ashfield
2011-07-25 15:03 ` Koen Kooi
1 sibling, 0 replies; 5+ messages in thread
From: Bruce Ashfield @ 2011-07-25 14:56 UTC (permalink / raw)
To: richard.purdie; +Cc: saul.wold, openembedded-core
On Mon, Jul 25, 2011 at 10:51 AM, Bruce Ashfield
<bruce.ashfield@windriver.com> wrote:
> The introduction of the linux-yocto-3.0 kernel is taking
> precedence over the known working 2.6.37 version. Forcing
> 2.6.37 until 3.0 is validated on the qemu machines.
>
> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
> ---
> meta/conf/machine/include/qemu.inc | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/meta/conf/machine/include/qemu.inc b/meta/conf/machine/include/qemu.inc
> index 9ef242f..c2d116f 100644
> --- a/meta/conf/machine/include/qemu.inc
> +++ b/meta/conf/machine/include/qemu.inc
> @@ -12,6 +12,7 @@ RDEPENDS_kernel-base = ""
>
> # Use a common kernel recipe for all QEMU machines
> PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
> +PREFERRED_VERSION_linux-yocto = "2.6.37+git%"
gak. This should be ?=, I'll update the patch and re-push.
Bruce
> #PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers-yocto"
>
> EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native"
> --
> 1.7.4.1
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
--
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] machine/qemu: set preferred linux-yocto kernel version
2011-07-25 14:51 ` [PATCH 1/1] " Bruce Ashfield
2011-07-25 14:56 ` Bruce Ashfield
@ 2011-07-25 15:03 ` Koen Kooi
1 sibling, 0 replies; 5+ messages in thread
From: Koen Kooi @ 2011-07-25 15:03 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: saul.wold
Op 25 jul. 2011, om 16:51 heeft Bruce Ashfield het volgende geschreven:
> The introduction of the linux-yocto-3.0 kernel is taking
> precedence over the known working 2.6.37 version. Forcing
> 2.6.37 until 3.0 is validated on the qemu machines.
>
> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
> ---
> meta/conf/machine/include/qemu.inc | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/meta/conf/machine/include/qemu.inc b/meta/conf/machine/include/qemu.inc
> index 9ef242f..c2d116f 100644
> --- a/meta/conf/machine/include/qemu.inc
> +++ b/meta/conf/machine/include/qemu.inc
> @@ -12,6 +12,7 @@ RDEPENDS_kernel-base = ""
>
> # Use a common kernel recipe for all QEMU machines
> PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
> +PREFERRED_VERSION_linux-yocto = "2.6.37+git%"
Please not that this won't do anything on incremental builds or when using package feeds since the cat is already out of the bag for the 3.0rc7 version.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/1] machine/qemu: set preferred linux-yocto kernel version
2011-07-25 14:51 [PATCH 0/1] machine/qemu: set preferred linux-yocto kernel version Bruce Ashfield
2011-07-25 14:51 ` [PATCH 1/1] " Bruce Ashfield
@ 2011-07-28 0:16 ` Saul Wold
1 sibling, 0 replies; 5+ messages in thread
From: Saul Wold @ 2011-07-28 0:16 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 07/25/2011 07:51 AM, Bruce Ashfield wrote:
> The staging of the linux-yocto-3.0 kernel is taking
> precedence over the 2.6.37 variant. We want the known
> good 2.6.37 to still be the default for a while longer.
>
> I'm making this change in qemu.inc, if anyone has a
> better idea or alternate preferred approach, let me
> know and we can update this change.
>
> The following changes since commit b3dffd26d650444883a2563b25da420d96712e09:
>
> Merge branch 'master' of git://git.pokylinux.org/poky (2011-07-25 09:03:19 -0400)
>
> are available in the git repository at:
>
> git://git.pokylinux.org/poky-contrib zedd/kernel
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel
>
> Bruce Ashfield (1):
> machine/qemu: set preferred linux-yocto kernel version
>
> meta/conf/machine/include/qemu.inc | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-07-28 0:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-25 14:51 [PATCH 0/1] machine/qemu: set preferred linux-yocto kernel version Bruce Ashfield
2011-07-25 14:51 ` [PATCH 1/1] " Bruce Ashfield
2011-07-25 14:56 ` Bruce Ashfield
2011-07-25 15:03 ` Koen Kooi
2011-07-28 0:16 ` [PATCH 0/1] " Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox