2022-05-26 13:27:40 +00:00
|
|
|
From 41b609f89872d44ae9fdaf30a141132759efae22 Mon Sep 17 00:00:00 2001
|
2021-05-07 12:41:15 +00:00
|
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
|
|
Date: Fri, 24 Apr 2015 09:45:41 -0400
|
2021-11-16 13:37:34 +00:00
|
|
|
Subject: [PATCH] RHEL: Fix list of supported sound cards to match RHEL qemu
|
|
|
|
(RHBZ#1176493).
|
2021-05-07 12:41:15 +00:00
|
|
|
|
|
|
|
---
|
2021-11-16 13:37:34 +00:00
|
|
|
lib/utils.ml | 5 +++--
|
2021-05-07 12:41:15 +00:00
|
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
|
2021-11-16 13:37:34 +00:00
|
|
|
diff --git a/lib/utils.ml b/lib/utils.ml
|
2022-04-04 12:52:11 +00:00
|
|
|
index 128bb697..7116a4f9 100644
|
2021-11-16 13:37:34 +00:00
|
|
|
--- a/lib/utils.ml
|
|
|
|
+++ b/lib/utils.ml
|
2022-04-04 12:52:11 +00:00
|
|
|
@@ -60,13 +60,14 @@ let kvm_arch = function
|
2021-05-07 12:41:15 +00:00
|
|
|
(* 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 =
|
|
|
|
--
|
2022-02-10 19:50:35 +00:00
|
|
|
2.31.1
|
2021-05-07 12:41:15 +00:00
|
|
|
|