Skip to content

Commit

Permalink
remove '-no-audio' flag
Browse files Browse the repository at this point in the history
It was causing the following error on Arch Linux (x86_64, 4.7.0-1-ARCH):

    qemu-system-i386: -audio: invalid option
  • Loading branch information
qguv committed Aug 15, 2016
1 parent d01a274 commit 588f7cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devices/emulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ def boot_devices():
print "Booting Device:", device_name
time.sleep(0.3)
if settings.HEADLESS:
sub.Popen('emulator -avd ' + device_name + " -wipe-data -no-audio -no-window",
sub.Popen('emulator -avd ' + device_name + " -wipe-data -no-window",
stdout=sub.PIPE, stderr=sub.PIPE, shell=True)
else:
sub.Popen('emulator -avd ' + device_name + " -wipe-data -no-audio",
sub.Popen('emulator -avd ' + device_name + " -wipe-data",
stdout=sub.PIPE, stderr=sub.PIPE, shell=True)

print "Waiting", settings.AVD_BOOT_DELAY, "seconds"
Expand Down

0 comments on commit 588f7cf

Please sign in to comment.