Skip to content

Commit 6486a61

Browse files
committed
boot-qemu.py: Disable audio for m68k
A user might not have permission or environment to open an audio device, resulting in: qemu-system-m68k: no default audio driver available Signed-off-by: Nathan Chancellor <nathan@kernel.org>
1 parent 5d7a2be commit 6486a61

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

boot-qemu.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,7 @@ def __init__(self):
523523
self._default_kernel_path = Path('vmlinux')
524524
self._initrd_arch = self._qemu_arch = 'm68k'
525525
self._qemu_args += [
526+
'-audio', 'none',
526527
'-cpu', 'm68040',
527528
'-M', 'q800',
528529
'-no-reboot',

0 commit comments

Comments
 (0)