From: Daniel P. Berrange Date: Wed, 31 Oct 2012 16:49:13 +0000 (+0000) Subject: Fix arch detection for qemu-system-i386 with QMP X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=6fea88a1199418d7100b6a8d0b5d5d1c584f8bb8;p=libvirt.git Fix arch detection for qemu-system-i386 with QMP QEMU uses 'i386' for its 32-bit x86 architecture, but libvirt wants that to be 'i686', so we must fix it up Signed-off-by: Daniel P. Berrange --- diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c index 9f151622d6..271273cba3 100644 --- a/src/qemu/qemu_capabilities.c +++ b/src/qemu/qemu_capabilities.c @@ -2327,6 +2327,14 @@ qemuCapsInitQMP(qemuCapsPtr caps, if (!(caps->arch = qemuMonitorGetTargetArch(mon))) goto cleanup; + /* Map i386, i486, i586 to i686. */ + if (caps->arch[0] == 'i' && + caps->arch[1] != '\0' && + caps->arch[2] == '8' && + caps->arch[3] == '6' && + caps->arch[4] == '\0') + caps->arch[1] = '6'; + /* Currently only x86_64 and i686 support PCI-multibus. */ if (STREQLEN(caps->arch, "x86_64", 6) || STREQLEN(caps->arch, "i686", 4)) {