d61af35693
Rebase RHEL patches.
resolves: rhbz#1950634
(cherry picked from commit c8d08693ef
)
27 lines
972 B
Diff
27 lines
972 B
Diff
From e57a5dafc00b3b5737824977aad0feb0ec497a1f Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Thu, 2 Mar 2017 14:21:37 +0100
|
|
Subject: [PATCH 08/11] RHEL: v2v: -i disk: force VNC as display (RHBZ#1372671)
|
|
|
|
The SDL output mode is not supported in RHEL's qemu-kvm.
|
|
---
|
|
v2v/input_disk.ml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/v2v/input_disk.ml b/v2v/input_disk.ml
|
|
index b3acb5f6..5b39dbe2 100644
|
|
--- a/v2v/input_disk.ml
|
|
+++ b/v2v/input_disk.ml
|
|
@@ -88,7 +88,7 @@ class input_disk input_format disk = object
|
|
s_features = [ "acpi"; "apic"; "pae" ];
|
|
s_firmware = UnknownFirmware; (* causes virt-v2v to autodetect *)
|
|
s_display =
|
|
- Some { s_display_type = Window; s_keymap = None; s_password = None;
|
|
+ Some { s_display_type = VNC; s_keymap = None; s_password = None;
|
|
s_listen = LNoListen; s_port = None };
|
|
s_video = None;
|
|
s_sound = None;
|
|
--
|
|
2.31.1
|
|
|