diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2022-03-09 11:02:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-10 13:07:37 +0000 |
commit | 5c931175b4707b3bf46aee9509607bef9adfe08f (patch) | |
tree | 771fb83d698840d06c973f001b1bf2159f3cafa8 | |
parent | 95634fdbc5fa979026f30a2c185fa1a5d7a2c5af (diff) | |
download | poky-5c931175b4707b3bf46aee9509607bef9adfe08f.tar.gz |
conf/machine: fix QEMU x86 sound options
This updates the QEMU sounds options for x86 emulation,
when "runqemu" is called with the "audio" argument,
to fix the below error:
runqemu - ERROR - Failed to run qemu: qemu-system-x86_64: warning: '-soundhw ac97' is deprecated, please use '-device AC97' instead
(From OE-Core rev: b802a5dd1a79c7be3bc790223a733ebc9be4f117)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/qemuboot.bbclass | 2 | ||||
-rw-r--r-- | meta/conf/machine/include/x86/qemuboot-x86.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/qemuboot.bbclass b/meta/classes/qemuboot.bbclass index 755d49acd6..ad8489902a 100644 --- a/meta/classes/qemuboot.bbclass +++ b/meta/classes/qemuboot.bbclass | |||
@@ -29,7 +29,7 @@ | |||
29 | # | 29 | # |
30 | # QB_AUDIO_DRV: qemu audio driver, e.g., "alsa", set it when support audio | 30 | # QB_AUDIO_DRV: qemu audio driver, e.g., "alsa", set it when support audio |
31 | # | 31 | # |
32 | # QB_AUDIO_OPT: qemu audio option, e.g., "-soundhw ac97,es1370", used | 32 | # QB_AUDIO_OPT: qemu audio option, e.g., "-device AC97", used |
33 | # when QB_AUDIO_DRV is set. | 33 | # when QB_AUDIO_DRV is set. |
34 | # | 34 | # |
35 | # QB_RNG: Pass-through for host random number generator, it can speedup boot | 35 | # QB_RNG: Pass-through for host random number generator, it can speedup boot |
diff --git a/meta/conf/machine/include/x86/qemuboot-x86.inc b/meta/conf/machine/include/x86/qemuboot-x86.inc index d3b91070a8..b7b6428e44 100644 --- a/meta/conf/machine/include/x86/qemuboot-x86.inc +++ b/meta/conf/machine/include/x86/qemuboot-x86.inc | |||
@@ -8,7 +8,7 @@ QB_CPU:x86-64 = "-cpu IvyBridge -machine q35" | |||
8 | QB_CPU_KVM:x86-64 = "-cpu IvyBridge -machine q35" | 8 | QB_CPU_KVM:x86-64 = "-cpu IvyBridge -machine q35" |
9 | 9 | ||
10 | QB_AUDIO_DRV = "alsa" | 10 | QB_AUDIO_DRV = "alsa" |
11 | QB_AUDIO_OPT = "-soundhw ac97,es1370" | 11 | QB_AUDIO_OPT = "-device AC97" |
12 | QB_KERNEL_CMDLINE_APPEND = "oprofile.timer=1 tsc=reliable no_timer_check rcupdate.rcu_expedited=1" | 12 | QB_KERNEL_CMDLINE_APPEND = "oprofile.timer=1 tsc=reliable no_timer_check rcupdate.rcu_expedited=1" |
13 | QB_OPT_APPEND = "-usb -device usb-tablet" | 13 | QB_OPT_APPEND = "-usb -device usb-tablet" |
14 | 14 | ||