summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosep Puigdemont <josep.puigdemont@enea.com>2014-09-06 12:45:01 +0200
committerZhenhua Luo <zhenhua.luo@freescale.com>2014-09-09 17:17:50 +0800
commit0593fcf83de728c86fd41c4695a3903dd7625daf (patch)
tree73090ce7231c643b512bb70089a3efde7670adea
parent8efb769207b4e96afecc47129983eadfd77fc008 (diff)
downloadmeta-freescale-0593fcf83de728c86fd41c4695a3903dd7625daf.tar.gz
qemu: remove unavailable configuration options
The preferred version of qemu defined in this layer (1.7) does not have the same configuration options as the original yocto version (2.0). Since this recipe includes yocto's qemu.inc, some of the configuration options defined there generate an error during the do_configure task: | ERROR: unknown option --disable-lzo | ERROR: unknown option --disable-numa | ERROR: unknown option --disable-quorum Setting PACKAGECONFIG[otion] to an empty string fixes the problem. Addresses bug: [YOCTO #6690] Signed-off-by: Josep Puigdemont <josep.puigdemont@enea.com>
-rw-r--r--meta-fsl-ppc/recipes-devtools/qemu/qemu_fslgit.bb7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-fsl-ppc/recipes-devtools/qemu/qemu_fslgit.bb b/meta-fsl-ppc/recipes-devtools/qemu/qemu_fslgit.bb
index 88e78b58..9e510567 100644
--- a/meta-fsl-ppc/recipes-devtools/qemu/qemu_fslgit.bb
+++ b/meta-fsl-ppc/recipes-devtools/qemu/qemu_fslgit.bb
@@ -6,6 +6,13 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
6# This means QEMU v1.7 with FSL specific patches applied 6# This means QEMU v1.7 with FSL specific patches applied
7PV = "1.7+fsl" 7PV = "1.7+fsl"
8 8
9# NOTE: these options are note available in qemu 1.7, but qemu.inc assumes
10# version 2.0+ where they are available. For now we unset them, but we should
11# remove the following lines when upgrading to qemu 2.0+:
12PACKAGECONFIG[quorum] = ""
13PACKAGECONFIG[lzo] = ""
14PACKAGECONFIG[numa] = ""
15
9SRC_URI = "git://git.freescale.com/ppc/sdk/qemu.git;nobranch=1" 16SRC_URI = "git://git.freescale.com/ppc/sdk/qemu.git;nobranch=1"
10SRCREV = "9e38e640275beabf6468a04cec5c403b2ac566ad" 17SRCREV = "9e38e640275beabf6468a04cec5c403b2ac566ad"
11 18