0a6d24c379
Remove -o json mode resolves: rhbz#2074026 Allow conversion of guests with NVMe drives from VMX files resolves: rhbz#2070530 Cleanly reject guests with snapshots when using -it ssh resolves: rhbz#1774386 Document that vmx+ssh "-ip" auth doesn't cover ssh / scp shell commands resolves: rhbz#1854275 Fix conversion if swap partition isn't encrypted with root directory resolves: rhbz#1658128 Document permissions when importing OVA using RHV UI resolves: rhbz#2039597
35 lines
834 B
Diff
35 lines
834 B
Diff
From 1e2b73e4629458ba7aec61a0accd78cdb1f016c8 Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Fri, 24 Apr 2015 09:45:41 -0400
|
|
Subject: [PATCH] RHEL: Fix list of supported sound cards to match RHEL qemu
|
|
(RHBZ#1176493).
|
|
|
|
---
|
|
lib/utils.ml | 5 +++--
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/lib/utils.ml b/lib/utils.ml
|
|
index 128bb697..7116a4f9 100644
|
|
--- a/lib/utils.ml
|
|
+++ b/lib/utils.ml
|
|
@@ -60,13 +60,14 @@ let kvm_arch = function
|
|
(* Does qemu support the given sound card? *)
|
|
let qemu_supports_sound_card = function
|
|
| Types.AC97
|
|
- | Types.ES1370
|
|
| Types.ICH6
|
|
| Types.ICH9
|
|
| Types.PCSpeaker
|
|
+ -> true
|
|
+ | Types.ES1370
|
|
| Types.SB16
|
|
| Types.USBAudio
|
|
- -> true
|
|
+ -> false
|
|
|
|
(* Find the UEFI firmware. *)
|
|
let find_uefi_firmware guest_arch =
|
|
--
|
|
2.31.1
|
|
|