* [PATCH 0/1] Fix reported issue with CentOS 5.4
@ 2011-12-23 15:57 Paul Eggleton
2011-12-23 15:57 ` [PATCH 1/1] qemu: explicitly disable kvm support for native without kvm header Paul Eggleton
0 siblings, 1 reply; 2+ messages in thread
From: Paul Eggleton @ 2011-12-23 15:57 UTC (permalink / raw)
To: openembedded-core
Chris Larson reported that the previous fix to automatically disable kvm
support in qemu-native didn't work for him on CentOS 5.4 - he needed to
explicitly add --disable-kvm rather than just omit --enable-kvm. Although
5.4 is quite old by now if it doesn't cause any harm (and it causes no
ill effects on CentOS 5.7) given the trivial nature of the patch I
figured it was worthwhile.
The following changes since commit c38693f78c968ab5f4bb557c20d1c8c55393ed6b:
opkg: Fix installation order in feeds with mutiple providers of packages (2011-12-22 22:38:09 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib paule/qemu-kvm2
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/qemu-kvm2
Paul Eggleton (1):
qemu: explicitly disable kvm support for native without kvm header
meta/recipes-devtools/qemu/qemu.inc | 2 +-
meta/recipes-devtools/qemu/qemu_0.14.0.bb | 2 +-
meta/recipes-devtools/qemu/qemu_0.15.1.bb | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
--
1.7.5.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] qemu: explicitly disable kvm support for native without kvm header
2011-12-23 15:57 [PATCH 0/1] Fix reported issue with CentOS 5.4 Paul Eggleton
@ 2011-12-23 15:57 ` Paul Eggleton
0 siblings, 0 replies; 2+ messages in thread
From: Paul Eggleton @ 2011-12-23 15:57 UTC (permalink / raw)
To: openembedded-core
Addendum to previous fix - instead of just not specifying --enable-kvm,
explicitly specify --disable-kvm when building native version and
kvm header is unavailable. Fixes reported do_configure failure on
earlier CentOS 5.x versions (e.g. 5.4).
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta/recipes-devtools/qemu/qemu.inc | 2 +-
meta/recipes-devtools/qemu/qemu_0.14.0.bb | 2 +-
meta/recipes-devtools/qemu/qemu_0.15.1.bb | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc
index bd86b4e..33abf96 100644
--- a/meta/recipes-devtools/qemu/qemu.inc
+++ b/meta/recipes-devtools/qemu/qemu.inc
@@ -40,7 +40,7 @@ do_configure_prepend_virtclass-native() {
do_configure() {
# Handle distros such as CentOS 5 32-bit that do not have kvm support
- KVMOPTS=""
+ KVMOPTS="--disable-kvm"
if [ "${PN}" != "qemu-native" ] || [ -f /usr/include/linux/kvm.h ] ; then
KVMOPTS="--enable-kvm"
fi
diff --git a/meta/recipes-devtools/qemu/qemu_0.14.0.bb b/meta/recipes-devtools/qemu/qemu_0.14.0.bb
index bc0c16b..a300545 100644
--- a/meta/recipes-devtools/qemu/qemu_0.14.0.bb
+++ b/meta/recipes-devtools/qemu/qemu_0.14.0.bb
@@ -3,7 +3,7 @@ require qemu.inc
LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913"
-PR = "r5"
+PR = "r6"
FILESPATH = "${FILE_DIRNAME}/qemu-${PV}"
FILESDIR = "${WORKDIR}"
diff --git a/meta/recipes-devtools/qemu/qemu_0.15.1.bb b/meta/recipes-devtools/qemu/qemu_0.15.1.bb
index ae68327..3a6389b 100644
--- a/meta/recipes-devtools/qemu/qemu_0.15.1.bb
+++ b/meta/recipes-devtools/qemu/qemu_0.15.1.bb
@@ -3,7 +3,7 @@ require qemu.inc
LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913"
-PR = "r1"
+PR = "r2"
FILESPATH = "${FILE_DIRNAME}/qemu-${PV}"
FILESDIR = "${WORKDIR}"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-12-23 16:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-23 15:57 [PATCH 0/1] Fix reported issue with CentOS 5.4 Paul Eggleton
2011-12-23 15:57 ` [PATCH 1/1] qemu: explicitly disable kvm support for native without kvm header Paul Eggleton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox