From bd589a1d53c5192daf40da0cc7f5809c7e4fa0ca Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 6 Nov 2014 15:15:39 +0000 Subject: [PATCH] test-tool: Map powerpc64 -> ppc64 when searching for qemu. Consequence of the previous commit. This also adjusts the whitespace to make the generated script a bit nicer. --- test-tool/test-tool.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/test-tool/test-tool.c b/test-tool/test-tool.c index 848571dbd..f3eb59d0e 100644 --- a/test-tool/test-tool.c +++ b/test-tool/test-tool.c @@ -389,14 +389,16 @@ set_qemu (guestfs_h *g, const char *path, int use_wrapper) "host_cpu=%s\n" "qemudir='%s'\n" "case $host_cpu in\n" - " amd64*) qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-x86_64\"\n" - " ;;\n" + " amd64*)\n" + " qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-x86_64\"\n" + " ;;\n" " arm*) qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-arm\"\n" " ;;\n" - " ppc64le) qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-ppc64\"\n" - " ;;\n" - " *) qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-$host_cpu\"\n" - " ;;\n" + " powerpc64|ppc64le)\n" + " qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-ppc64\"\n" + " ;;\n" + " *) qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-$host_cpu\"\n" + " ;;\n" "esac\n" "exec \"$qemu\" -L \"$qemudir/pc-bios\" \"$@\"\n", host_cpu, path);