qemu-nativesdk: fix the build failure that linux/kvm.h not found
authorYao Zhao <yao.zhao@windriver.com>
Wed, 18 Jul 2012 00:44:46 +0000 (20:44 -0400)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 18 Jul 2012 16:46:53 +0000 (17:46 +0100)
qemu.inc: on older kernel build hosts that have < 2.6.20 which
doesn't support kvm yet, build will fail. Add a check in do_configure
to make sure whether linux/kvm.h exists for nativesdk build.

(From OE-Core rev: 7d49af3a811472a2a47453bef0813b89c6331ae7)

Signed-off-by: Yao Zhao <yao.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/qemu/qemu.inc

index e618c1d..f9368f3 100644 (file)
@@ -22,8 +22,9 @@ inherit autotools
 do_configure() {
     # Handle distros such as CentOS 5 32-bit that do not have kvm support
     KVMOPTS="--disable-kvm"
-    if [ "${PN}" != "qemu-native" ] || [ -f /usr/include/linux/kvm.h ] ; then
-        KVMOPTS="--enable-kvm"
+    if [ "${PN}" != "qemu-native" -a "${PN}" != "qemu-nativesdk" ] \
+       || [ -f /usr/include/linux/kvm.h ] ; then
+       KVMOPTS="--enable-kvm"
     fi
 
     ${S}/configure --prefix=${prefix} --sysconfdir=${sysconfdir} --disable-strip ${EXTRA_OECONF} $KVMOPTS