summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
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
commit478f29c3e97760f2ff443227950ce21d9510a280 (patch)
treeb43405e61f7180ea8cbdf69aa1e477a815b15221 /recipes-devtools
parentbfec563fa7ddde87748cb30e4e581629623df652 (diff)
downloadmeta-fsl-ppc-478f29c3e97760f2ff443227950ce21d9510a280.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>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/qemu/qemu_fslgit.bb7
1 files changed, 7 insertions, 0 deletions
diff --git a/recipes-devtools/qemu/qemu_fslgit.bb b/recipes-devtools/qemu/qemu_fslgit.bb
index 88e78b5..9e51056 100644
--- a/recipes-devtools/qemu/qemu_fslgit.bb
+++ b/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