From d26cbff22a3dfc3f5682b44d6e753f1c4091a56d Mon Sep 17 00:00:00 2001 From: Zhai Edwin Date: Tue, 22 Feb 2011 09:58:11 +0800 Subject: qemu: enable audio support On qemux86, export ac97 & es1370 emulated device to guest, and enable host oss&alsa driver. So end user can get sound from qemux86 guest if the sound card driver installed. [BUGID #488] got fixed. Signed-off-by: Zhai Edwin --- scripts/poky-qemu | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'scripts') diff --git a/scripts/poky-qemu b/scripts/poky-qemu index b19a89ddab..cb08f27121 100755 --- a/scripts/poky-qemu +++ b/scripts/poky-qemu @@ -129,6 +129,13 @@ while [ $i -le $# ]; do SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -serial stdio" SCRIPT_KERNEL_OPT="$SCRIPT_KERNEL_OPT console=ttyS0" ;; + "audio") + if [[ "x$MACHINE" == "xqemux86" || "x$MACHINE" == "xqemux86-64" ]]; then + echo "Enable audio on qemu. Pls. install snd_intel8x0 or snd_ens1370 driver in linux guest."; + QEMU_AUDIO_DRV="alsa" + SCRIPT_QEMU_OPT="$SCRIPT_QEMU_OPT -soundhw ac97,es1370" + fi + ;; "kvm") KVM_ENABLED="yes" KVM_CAPABLE=`grep 'vmx\|smx' /proc/cpuinfo` -- cgit 1.2.3-korg