diff options
author | Ting Liu <b28495@freescale.com> | 2013-07-04 09:59:37 +0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-09 07:56:14 -0700 |
commit | 8438bbe210de6f565f842d745ccede131fa385db (patch) | |
tree | 91f3f4a3861ce725b700a5e06711d35a007309a6 /meta | |
parent | 9e615e2a6845d3a98f5d9b0cb555d132c696fc92 (diff) | |
download | openembedded-core-8438bbe210de6f565f842d745ccede131fa385db.tar.gz openembedded-core-8438bbe210de6f565f842d745ccede131fa385db.tar.bz2 openembedded-core-8438bbe210de6f565f842d745ccede131fa385db.zip |
qemu: use PACKAGECONFIG to address libaio/attr/libcap dependencies
Move to using the PACKAGECONFIG mechanism to select configure options
and dependencies. Without this the system will attempt to discover
various dependencies, and sometimes does so incorrectly.
Signed-off-by: Ting Liu <b28495@freescale.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 7caef6e9a3..2d4a345bee 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc @@ -84,6 +84,8 @@ do_install_append() { # END of qemu-mips workaround PACKAGECONFIG ??= "" +PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr,--disable-virtfs,libcap attr," +PACKAGECONFIG[aio] = "--enable-linux-aio,--disable-linux-aio,libaio," # Qemu target will not build in world build for ARM or Mips BROKEN_qemuarm = "1" |