virt-v2v/SOURCES/0003-RHEL-Fix-list-of-supported-sound-cards-to-match-RHEL.patch

32 lines
822 B
Diff
Raw Normal View History

2023-09-21 20:39:07 +00:00
From 389c370a34f805e744cb8352e3e980fbd0b52044 Mon Sep 17 00:00:00 2001
2021-11-03 22:31:07 +00:00
From: "Richard W.M. Jones" <rjones@redhat.com>
Date: Fri, 24 Apr 2015 09:45:41 -0400
2022-02-01 18:03:03 +00:00
Subject: [PATCH] RHEL: Fix list of supported sound cards to match RHEL qemu
(RHBZ#1176493).
2021-11-03 22:31:07 +00:00
---
2022-02-01 18:03:03 +00:00
lib/utils.ml | 5 +++--
2021-11-03 22:31:07 +00:00
1 file changed, 3 insertions(+), 2 deletions(-)
2022-02-01 18:03:03 +00:00
diff --git a/lib/utils.ml b/lib/utils.ml
2023-09-21 20:39:07 +00:00
index 174c01b1..54431307 100644
2022-02-01 18:03:03 +00:00
--- a/lib/utils.ml
+++ b/lib/utils.ml
2022-09-27 13:40:09 +00:00
@@ -60,13 +60,14 @@ let kvm_arch = function
2021-11-03 22:31:07 +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 =