提交 667370d6 编写于 作者: C Cole Robinson

qemu: caps: qemu-system-aarch64 supports armv7l

And it always has, so advertise it similarly to i686
上级 29ce1693
......@@ -697,6 +697,14 @@ virQEMUCapsFindBinaryForArch(virArch hostarch,
if (ret && !virFileIsExecutable(ret))
VIR_FREE(ret);
if (guestarch == VIR_ARCH_ARMV7L &&
!ret &&
hostarch == VIR_ARCH_AARCH64) {
ret = virFindFileInPath("qemu-system-aarch64");
if (ret && !virFileIsExecutable(ret))
VIR_FREE(ret);
}
if (guestarch == VIR_ARCH_I686 &&
!ret &&
hostarch == VIR_ARCH_X86_64) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册