search for: 1260590

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

2016 Jun 09
1
[PATCH] v2v: OVF: Set <Origin/> field correctly based on source hypervisor.
...sic *) [] [PCData "True"]; + e "IsAutoSuspend" [] [PCData "False"]; + e "TimeZone" [] []; + e "IsStateless" [] [PCData "False"]; + e "VmType" [] [PCData vmtype]; + (* See https://bugzilla.redhat.com/show_bug.cgi?id=1260590#c17 *) + e "DefaultDisplayType" [] [PCData "1"]; + ] in + + (* Add the <Origin> element if we can. *) + let content_fields = + match origin_of_source_hypervisor source.s_hypervisor with + | None -> content_fields + | Some origin -> + content_fiel...
2018 Jul 19
5
[PATCH] v2v: ovf: add firmware and machine type element
...t biostype = get_ovirt_biostype guestcaps target_firmware in let ovf : doc = doc "ovf:Envelope" [ @@ -562,6 +579,7 @@ let rec create_ovf source targets guestcaps inspect e "VmType" [] [PCData vmtype]; (* See https://bugzilla.redhat.com/show_bug.cgi?id=1260590#c17 *) e "DefaultDisplayType" [] [PCData "1"]; + e "BiosType" [] [PCData (string_of_int biostype)]; ] in (match source.s_cpu_model with diff --git a/v2v/create_ovf.mli b/v2v/create_ovf.mli index 8200b76f9..cb6c12690 100644 --- a/v2v/crea...
2018 Oct 10
4
[PATCH v2 0/2] v2v: machine type for oVirt
changes in v2: - split patch in two - changed as per suggestions Tomáš Golembiovský (2): v2v: ovf: add firmware and machine type element v2v: enable UEFI for oVirt/RHV outputs v2v/create_ovf.ml | 12 +++++++++++- v2v/create_ovf.mli | 2 +- v2v/output_rhv.ml | 6 ++---- v2v/output_rhv_upload.ml | 4 ++--
2016 Jan 06
0
ANNOUNCE: libguestfs 1.32 released
.../1260778 virt-builder --ssh-inject doesn't set proper permissions on created files https://bugzilla.redhat.com/1260689 RFE: V2V to check and warn user to disable group policy and anti virus on Windows guests https://bugzilla.redhat.com/1260590 Wrong graphics protocal and video type set for guest after convert to rhev 3.6 by virt-v2v https://bugzilla.redhat.com/1258342 extra slashes in vcenter URL confuses virt-v2v https://bugzilla.redhat.com/1257895 [RHEV][V2V] virt-v2v ignores...
2016 Jul 07
12
[PATCH v3 0/8] v2v: Move Curl wrapper to mllib and more.
v2 -> v3: - Changes to the Curl API suggested by Pino.
2016 Jul 07
9
[PATCH v2 0/8] v2v: Move Curl wrapper to mllib and use it for virt-builder (and more).
v1 -> v2: - Fixed the bug with precedence of if / @. - Add some imperative list operators inspired by Perl, and use those for constructing the Curl arguments, and more. Rich.