You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
938 B
24 lines
938 B
3 months ago
|
From 8b2bb3c153b44634fb3f93aae1c0c40655213506 Mon Sep 17 00:00:00 2001
|
||
2 years ago
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
||
|
Date: Thu, 2 Mar 2017 14:21:37 +0100
|
||
|
Subject: [PATCH] RHEL: v2v: -i disk: force VNC as display (RHBZ#1372671)
|
||
|
|
||
|
The SDL output mode is not supported in RHEL's qemu-kvm.
|
||
|
---
|
||
|
input/input_disk.ml | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/input/input_disk.ml b/input/input_disk.ml
|
||
2 years ago
|
index 279250fe..c6b819c0 100644
|
||
2 years ago
|
--- a/input/input_disk.ml
|
||
|
+++ b/input/input_disk.ml
|
||
2 years ago
|
@@ -77,7 +77,7 @@ module Disk = struct
|
||
2 years ago
|
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_sound = None;
|
||
|
s_disks = s_disks;
|