[meta-freescale] [meta-fsl-ppc][PATCH] qemu: remove unavailable configuration options

Josep Puigdemont josep.puigdemont at enea.com
Fri Sep 5 08:16:38 PDT 2014


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 at enea.com>
---
 recipes-devtools/qemu/qemu_fslgit.bb | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/recipes-devtools/qemu/qemu_fslgit.bb b/recipes-devtools/qemu/qemu_fslgit.bb
index 88e78b5..8c329a2 100644
--- a/recipes-devtools/qemu/qemu_fslgit.bb
+++ b/recipes-devtools/qemu/qemu_fslgit.bb
@@ -1,5 +1,9 @@
 require recipes-devtools/qemu/qemu.inc
 
+PACKAGECONFIG[quorum] = ""
+PACKAGECONFIG[lzo]    = ""
+PACKAGECONFIG[numa]   = ""
+
 LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
                     file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913"
 
-- 
1.9.3



More information about the meta-freescale mailing list