diff options
author | Andrei Dinu <andrei.adrianx.dinu@intel.com> | 2012-12-13 18:08:08 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-14 08:57:59 +0000 |
commit | 0ddcd2ce24f0cc65561e2d26c9d63048beedc40e (patch) | |
tree | 44ee2ba06779f4e0f36ef2fa789f84bdbe6a68b6 /scripts/runqemu-internal | |
parent | 824cf145bcb55bb99a717a2dfd73e43e6b3feea4 (diff) | |
download | openembedded-core-0ddcd2ce24f0cc65561e2d26c9d63048beedc40e.tar.gz openembedded-core-0ddcd2ce24f0cc65561e2d26c9d63048beedc40e.tar.bz2 openembedded-core-0ddcd2ce24f0cc65561e2d26c9d63048beedc40e.zip |
Disabling audio on when running runqemu qemuarm
Added the change that prevented runqemu to throw
sound errors.
[YOCTO #3528]
Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-x | scripts/runqemu-internal | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index 7ca00f8fa0..d5c00570ad 100755 --- a/scripts/runqemu-internal +++ b/scripts/runqemu-internal @@ -302,6 +302,7 @@ fi if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "qemuarmv6" -o "$MACHINE" = "qemuarmv7" ]; then QEMU=qemu-system-arm MACHINE_SUBTYPE=versatilepb + export QEMU_AUDIO_DRV="none" QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS" # QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS -force-pointer" if [ "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then |