Skip to content

Commit

Permalink
v2v: -o rhev, -o vdsm: Use correct DefaultDisplayType for qxl (RHBZ#1…
Browse files Browse the repository at this point in the history
…260590).

This fixes commit 829e3fe.
  • Loading branch information
rwmjones committed Sep 8, 2015
1 parent 5ed4388 commit c4bc811
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion v2v/OVF.ml
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,11 @@ let rec create_ovf source targets guestcaps inspect
e "IsStateless" [] [PCData "False"];
e "Origin" [] [PCData (string_of_int origin)];
e "VmType" [] [PCData vmtype];
e "DefaultDisplayType" [] [PCData "1" (* qxl *)];
(* The documentation for DefaultDisplayType is wrong. See
* https://bugzilla.redhat.com/show_bug.cgi?id=1260590#c7 for
* correct information.
*)
e "DefaultDisplayType" [] [PCData "2" (* qxl *)];

e "Section" ["ovf:id", vm_uuid; "ovf:required", "false";
"xsi:type", "ovf:OperatingSystemSection_Type"] [
Expand Down

0 comments on commit c4bc811

Please sign in to comment.