summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2018-10-16 09:45:19 +0800
committerBruce Ashfield <bruce.ashfield@windriver.com>2018-10-18 11:37:55 -0400
commit7403b5a6910d60a5430f4ba83b35871948f9d91d (patch)
treedc62152feef6ad23421306f9412000347c1ef395
parentc9c0d5ef20014ca44e0bb204553ad76d1feeae09 (diff)
downloadmeta-virtualization-7403b5a6910d60a5430f4ba83b35871948f9d91d.tar.gz
libvirt: remove qemu from PACKAGECONFIG for mips n32 and n64
PACKAGECONFIG 'qemu' causes libvirt depends on package qemu. But qemu is not compatible with mips n32 and n64. So remove 'qemu' from PACKAGECONFIG for mips n32 and n64. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--recipes-extended/libvirt/libvirt_4.7.0.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-extended/libvirt/libvirt_4.7.0.bb b/recipes-extended/libvirt/libvirt_4.7.0.bb
index ecccfeeb..51367985 100644
--- a/recipes-extended/libvirt/libvirt_4.7.0.bb
+++ b/recipes-extended/libvirt/libvirt_4.7.0.bb
@@ -186,6 +186,10 @@ PACKAGECONFIG ??= "qemu yajl uml openvz vmware vbox esx iproute2 lxc test \
186 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'polkit', '', d)} \ 186 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'polkit', '', d)} \
187 " 187 "
188 188
189# qemu is NOT compatible with mips64
190PACKAGECONFIG_remove_mipsarchn32 = "qemu"
191PACKAGECONFIG_remove_mipsarchn64 = "qemu"
192
189# enable,disable,depends,rdepends 193# enable,disable,depends,rdepends
190# 194#
191PACKAGECONFIG[qemu] = "--with-qemu,--without-qemu,qemu," 195PACKAGECONFIG[qemu] = "--with-qemu,--without-qemu,qemu,"