diff --git a/0001-ppc64le-configure-Look-for-qemu-system-ppc64-binary-.patch b/0001-ppc64le-configure-Look-for-qemu-system-ppc64-binary-.patch deleted file mode 100644 index 3f3063e..0000000 --- a/0001-ppc64le-configure-Look-for-qemu-system-ppc64-binary-.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- libguestfs-1.28.1.old/configure.ac 2014-10-18 10:50:54.000000000 +0100 -+++ libguestfs-1.28.1/configure.ac 2014-10-24 21:42:04.534071112 +0100 -@@ -725,7 +725,8 @@ - qemu_system="$( - echo qemu-system-$host_cpu | - $SED -e 's/-i@<:@456@:>@86/-i386/g' \ -- -e 's/-arm.*/-arm/g' -+ -e 's/-arm.*/-arm/g' \ -+ -e 's/-ppc64le/-ppc64/g' - )" - default_qemu="qemu-kvm kvm $qemu_system qemu" - AC_ARG_WITH([qemu], diff --git a/0002-ppc64le-test-tool-Use-correct-qemu-system-ppc64-bina.patch b/0002-ppc64le-test-tool-Use-correct-qemu-system-ppc64-bina.patch deleted file mode 100644 index 3274dd9..0000000 --- a/0002-ppc64le-test-tool-Use-correct-qemu-system-ppc64-bina.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 5018e001290a585ed303bc311cdeeca6b5c11e98 Mon Sep 17 00:00:00 2001 -From: Menanteau Guy -Date: Fri, 24 Oct 2014 16:51:02 +0100 -Subject: [PATCH 2/3] ppc64le: test-tool: Use correct qemu-system-ppc64 binary - when creating qemu wrapper. - ---- - test-tool/test-tool.c | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/test-tool/test-tool.c b/test-tool/test-tool.c -index 3217a69..c0c4798 100644 ---- a/test-tool/test-tool.c -+++ b/test-tool/test-tool.c -@@ -388,7 +388,11 @@ set_qemu (guestfs_h *g, const char *path, int use_wrapper) - "#!/bin/sh -\n" - "host_cpu=%s\n" - "qemudir='%s'\n" -+ "if [ $host_cpu != \"ppc64le\" ]; then \n" - "qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-$host_cpu\"\n" -+ "else" -+ "qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-ppc64\"\n" -+ "fi" - "exec \"$qemu\" -L \"$qemudir/pc-bios\" \"$@\"\n", - host_cpu, path); - fclose (fp); --- -2.0.4 - diff --git a/0003-test-tool-Handle-mapping-other-architectures-to-qemu.patch b/0003-test-tool-Handle-mapping-other-architectures-to-qemu.patch deleted file mode 100644 index f153d25..0000000 --- a/0003-test-tool-Handle-mapping-other-architectures-to-qemu.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 4ff6ba35502736a2aed1f17eda67728f624c3390 Mon Sep 17 00:00:00 2001 -From: "Richard W.M. Jones" -Date: Fri, 24 Oct 2014 16:55:36 +0100 -Subject: [PATCH 3/3] test-tool: Handle mapping other architectures to - qemu-system-* binaries. - ---- - test-tool/test-tool.c | 15 ++++++++++----- - 1 file changed, 10 insertions(+), 5 deletions(-) - -diff --git a/test-tool/test-tool.c b/test-tool/test-tool.c -index c0c4798..848571d 100644 ---- a/test-tool/test-tool.c -+++ b/test-tool/test-tool.c -@@ -388,11 +388,16 @@ set_qemu (guestfs_h *g, const char *path, int use_wrapper) - "#!/bin/sh -\n" - "host_cpu=%s\n" - "qemudir='%s'\n" -- "if [ $host_cpu != \"ppc64le\" ]; then \n" -- "qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-$host_cpu\"\n" -- "else" -- "qemu=\"$qemudir/$host_cpu-softmmu/qemu-system-ppc64\"\n" -- "fi" -+ "case $host_cpu in\n" -+ " amd64*) 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" -+ "esac\n" - "exec \"$qemu\" -L \"$qemudir/pc-bios\" \"$@\"\n", - host_cpu, path); - fclose (fp); --- -2.0.4 -