Displaying 2 results from an estimated 2 matches for "qemuopts_set_binary_by_arch".
2018 Aug 28
1
[PATCH] ppc64le: Remove bogus __powerpc64le__.
...a thing - tested on P9.
---
common/qemuopts/qemuopts.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/qemuopts/qemuopts.c b/common/qemuopts/qemuopts.c
index 49550bb21..3a8dcae70 100644
--- a/common/qemuopts/qemuopts.c
+++ b/common/qemuopts/qemuopts.c
@@ -552,7 +552,7 @@ qemuopts_set_binary_by_arch (struct qemuopts *qopts, const char *arch)
binary = strdup ("qemu-system-aarch64");
#elif defined(__arm__)
binary = strdup ("qemu-system-arm");
-#elif defined(__powerpc64__) || defined(__powerpc64le__)
+#elif defined(__powerpc64__)
binary = strdup ("qemu-sys...
2017 Apr 27
4
[PATCH 0/4] common: Add a simple mini-library for handling qemu command and config files.
Currently we have an OCaml library for generating the qemu command
line (used only by ‘virt-v2v -o qemu’). However we also generate a
qemu command line in ‘lib/launch-direct.c’, and we might in future
need to generate a ‘-readconfig’-compatible configuration file if we
want to go beyond 10,000 drives for scalability testing.
Therefore this patch series reimplements the qemu command line code as