search for: set_hv

Displaying 6 results from an estimated 6 matches for "set_hv".

Did you mean: get_hv
2014 Jan 01
0
[PATCH] Allow ./configure --without-qemu.
From: "Richard W.M. Jones" <rjones at redhat.com> This means there will be no default hypervisor, and effectively the user will always have to specify one (eg. by setting LIBGUESTFS_HV or calling guestfs_set_hv). This is useful on platforms where qemu doesn't work, or where qemu is not needed (eg. if you want to use UML, or you just want to compile libguestfs without using/testing it). --- configure.ac | 125 ++++++++++++++++++++++------------------- src/handle.c...
2017 Mar 03
2
[PATCH] generator: Allow actions to be deprecated with no replacement.
...erator/actions_properties_deprecated.ml +++ b/generator/actions_properties_deprecated.ml @@ -30,7 +30,7 @@ let non_daemon_functions = [ style = RErr, [OptString "hv"], []; fish_alias = ["qemu"]; config_only = true; blocking = false; - deprecated_by = Some "set_hv"; + deprecated_by = Replaced_by "set_hv"; shortdesc = "set the hypervisor binary (usually qemu)"; longdesc = "\ Set the hypervisor binary (usually qemu) that we will use. @@ -55,7 +55,7 @@ the qemu binary at the same time as the handle is created." }...
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...not use"; diff --git a/generator/actions_properties.ml b/generator/actions_properties.ml index 87144b14f..ef31ffa5a 100644 --- a/generator/actions_properties.ml +++ b/generator/actions_properties.ml @@ -25,7 +25,7 @@ open Types let non_daemon_functions = [ { defaults with name = "set_hv"; added = (1, 23, 17); - style = RErr, [String "hv"], []; + style = RErr, [String (PlainString, "hv")], []; fish_alias = ["hv"]; config_only = true; blocking = false; shortdesc = "set the hypervisor binary"; @@ -314,7 +314,7 @@ This...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.