summaryrefslogtreecommitdiffstats
path: root/recipes-extended
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2022-10-26 09:46:22 +0800
committerBruce Ashfield <bruce.ashfield@gmail.com>2022-10-26 10:09:38 -0400
commit0d2f235a4acbb0ddec1a02d8c1825c5336a33852 (patch)
treec792f8fd36b3b1fa089195474068cb0905fb6db0 /recipes-extended
parentd36563caf1811d79d85eb0ba640e390c6bf0f397 (diff)
downloadmeta-virtualization-0d2f235a4acbb0ddec1a02d8c1825c5336a33852.tar.gz
libvirt: remove package config qemu for powerpc and riscv32
qemu is not compatible with ppc32 and riscv32, so remove libvirt's package config 'qemu' for them. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-extended')
-rw-r--r--recipes-extended/libvirt/libvirt_8.1.0.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes-extended/libvirt/libvirt_8.1.0.bb b/recipes-extended/libvirt/libvirt_8.1.0.bb
index 89f82bf8..1de2988c 100644
--- a/recipes-extended/libvirt/libvirt_8.1.0.bb
+++ b/recipes-extended/libvirt/libvirt_8.1.0.bb
@@ -122,9 +122,11 @@ PACKAGECONFIG ??= "gnutls qemu yajl openvz vmware vbox esx lxc test remote \
122 ${@bb.utils.contains('DISTRO_FEATURES', 'polkit', 'polkit', '', d)} \ 122 ${@bb.utils.contains('DISTRO_FEATURES', 'polkit', 'polkit', '', d)} \
123 " 123 "
124 124
125# qemu is NOT compatible with mips64 125# qemu is NOT compatible with mips64, powerpc and riscv32
126PACKAGECONFIG:remove:mipsarchn32 = "qemu" 126PACKAGECONFIG:remove:mipsarchn32 = "qemu"
127PACKAGECONFIG:remove:mipsarchn64 = "qemu" 127PACKAGECONFIG:remove:mipsarchn64 = "qemu"
128PACKAGECONFIG:remove:powerpc = "qemu"
129PACKAGECONFIG:remove:riscv32 = "qemu"
128 130
129# numactl is NOT compatible with arm 131# numactl is NOT compatible with arm
130PACKAGECONFIG:remove:arm = "numactl" 132PACKAGECONFIG:remove:arm = "numactl"