diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2022-07-15 22:24:47 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-11-28 12:27:33 +0100 |
commit | de28b757b5455ef111e5edd9189c138992395e49 (patch) | |
tree | 45464672176ff081eab06b28bb6f5ce9093ade20 | |
parent | 8131aa137a63f33919bddfaa75aac0cb49f6dd3e (diff) |
Disable sound on qemuarm due to issue in CI env.
Jobs fail with:
qemu: module audio-audio-pa not found, do you want to install qemu-system-gui package?
qemu: module audio-audio-jack not found, do you want to install qemu-system-gui package?
qemu: module audio-audio-sdl not found, do you want to install qemu-system-gui package?
Bug-AGL: SPEC-4477
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Change-Id: Ib6e7b39c277a6987c0fb76a6d546eeea37c132dd
-rw-r--r-- | templates/machines/qemuarm.jinja2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/machines/qemuarm.jinja2 b/templates/machines/qemuarm.jinja2 index 954b188..cd0b0fd 100644 --- a/templates/machines/qemuarm.jinja2 +++ b/templates/machines/qemuarm.jinja2 @@ -10,7 +10,7 @@ {%- set qemu_cpu = "cortex-a15" %} {%- set qemu_machine = "virt-2.11" %} {%- set qemu_memory = "2048" %} -{%- set qemu_args = "-smp 2 -device intel-hda -device hda-duplex -device usb-ehci -device virtio-rng-pci -device VGA,vgamem_mb=128,edid=on -device qemu-xhci -device usb-tablet -device usb-kbd" %} +{%- set qemu_args = "-smp 2 -device usb-ehci -device virtio-rng-pci -device VGA,vgamem_mb=128,edid=on -device qemu-xhci -device usb-tablet -device usb-kbd" %} {%- set qemu_cmdline = "console=ttyAMA0,115200 root=/dev/vda verbose systemd.log_color=false mem=4096M vmalloc=192M memblock=debug cma=160M " %} {%- set guestfs_interface = "virtio" %} {%- set rootfs_type = rootfs_type|default("rootvd") %} |