search for: guestfs_qemu

Displaying 10 results from an estimated 10 matches for "guestfs_qemu".

2017 Oct 05
0
[PATCH] build: Don't test for qemu virtio-serial at configure time.
...h. * --with-qemu=/path/to/qemu Use the supplied qemu binary without question. No checks on the binary are done. * --with-qemu=no or --without-qemu Disable the default hypervisor. You have to set $LIBGUESTFS_HV before running programs. --- docs/guestfs-building.pod | 7 +-- m4/guestfs_qemu.m4 | 137 ++++++++++++++++++---------------------------- 2 files changed, 56 insertions(+), 88 deletions(-) diff --git a/docs/guestfs-building.pod b/docs/guestfs-building.pod index 187da37be..9b3f37901 100644 --- a/docs/guestfs-building.pod +++ b/docs/guestfs-building.pod @@ -686,11 +686,10...
2016 May 26
1
Re: [PATCH 3/3] p2v: Add a 'make run-virt-p2v' rule which boots virt-p2v in a VM.
...gh it's not really > +# recommended, but it's OK for quick tests of the GUI (don't try doing > +# a conversion). A better way is to run virt-p2v inside a VM on the > +# local machine, which the following rule automates. > + > +QEMU = qemu-system-$(host_cpu) Isn't m4/guestfs_qemu.m4 already exporting a QEMU variable for makefiles? -- Pino Toscano
2017 Oct 05
0
Re: --with-qemu option in libguestfs
...e same thing) which disables qemu, although that means for libguestfs to work at all you would need to supply a qemu binary at runtime through an environment variable (‘LIBGUESTFS_HV=/path/to/qemu program’). The logic for all this is here: https://github.com/libguestfs/libguestfs/blob/master/m4/guestfs_qemu.m4#L26 > I would like libguestfs to take even the "qemu-img" binary from the > installed qemu package. > How to enable that? qemu is a hypervisor, qemu-img is a program for manipulating disk images. They are very different things, and it makes no sense to substitute qemu-img f...
2017 Aug 09
2
[PATCH 1/2] configure: visually split the blocks of checks
...ies:"]) m4_include([m4/guestfs_daemon.m4]) dnl The appliance and any dependencies. +AS_ECHO +AS_ECHO(["Checking the appliance and its dependencies:"]) m4_include([m4/guestfs_appliance.m4]) dnl Check for QEMU. +AS_ECHO +AS_ECHO(["Checking for QEMU:"]) m4_include([m4/guestfs_qemu.m4]) dnl Miscellaneous libraries used by other programs. +AS_ECHO +AS_ECHO(["Checking for other libraries:"]) m4_include([m4/guestfs_misc_libraries.m4]) dnl Check for language bindings. +AS_ECHO +AS_ECHO(["Checking for OCaml:"]) m4_include([m4/guestfs_ocaml.m4]) +AS_ECHO...
2016 May 26
5
[PATCH 0/3] Three virt-p2v patches.
Not very much related to each other. Rich.
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
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings: Patches 1-12 split configure.ac into smaller files using the m4_include mechanism. Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into three new manual pages: guestfs-hacking(3) - how to extend and contribute to libguestfs guestfs-internals(3) - architecture and internals guestfs-security(3) - security and CVEs Patch 16 is a
2017 Aug 12
2
[PATCH] configure: Further split blocks of text in the script output.
...cies. -AS_ECHO -AS_ECHO(["Checking the appliance and its dependencies:"]) +HEADING([Checking the appliance and its dependencies]) m4_include([m4/guestfs_appliance.m4]) dnl Check for QEMU. -AS_ECHO -AS_ECHO(["Checking for QEMU:"]) +HEADING([Checking for QEMU]) m4_include([m4/guestfs_qemu.m4]) dnl Miscellaneous libraries used by other programs. -AS_ECHO -AS_ECHO(["Checking for other libraries:"]) +HEADING([Checking for other libraries]) m4_include([m4/guestfs_misc_libraries.m4]) dnl Check for language bindings. -AS_ECHO -AS_ECHO(["Checking for OCaml:"]) +H...
2017 Jun 27
3
[PATCH] libvirt: disallow non-local connections (RHBZ#1347830)
If the connection is not local, paths of disks will refer to the remote host, which were mistakenly handled as local paths (in the best case failing to open a non-existing disk, and in the worst case opening a different disk!). In case the disks are remote resources like ssh or ceph, nothing guarantees that the hostname can be reached from the local machine, or even that it is actually the same on
2017 Jul 07
4
[PATCH v6 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
Hopefully this time ...