Displaying 2 results from an estimated 2 matches for "36f47c8".
2017 Feb 22
5
[PATCH 0/4] v2v: windows: Only try to install rhev-apt if the target is RHV (RHBZ#1161019).
The bug is:
https://bugzilla.redhat.com/show_bug.cgi?id=1161019
This makes a few other minor refactorings to the code.
Rich.
2017 Feb 22
0
[PATCH 1/4] v2v: Pass output object into the conversion module.
...inspect source rcaps =
let kernel, virtio = configure_kernel () in
- if keep_serial_console then (
+ if output#keep_serial_console then (
configure_console ();
bootloader#configure_console ();
) else (
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index e259c22..36f47c8 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -37,7 +37,7 @@ module G = Guestfs
* time the Windows VM is booted on KVM.
*)
-let convert ~keep_serial_console (g : G.guestfs) inspect source rcaps =
+let convert (g : G.guestfs) inspect source output rcaps =
(* Get the da...