aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin LABBE <clabbe@baylibre.com>2022-06-07 12:23:02 +0000
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2022-08-23 20:23:51 +0000
commit8131aa137a63f33919bddfaa75aac0cb49f6dd3e (patch)
treee224c1c50eca067cafe0508895e49def7ee52212
parent03ce45892111a14fd404695f687da74c10f311bc (diff)
Reduce memory of qemu-arm to 2048 to made qemu happy. Change-Id: I26317c2882efefdaa40ed882e81de79c8b2aef70 Bug-AGL: SPEC-4429 Signed-off-by: Corentin LABBE <clabbe@baylibre.com> (cherry picked from commit b6785131a2c2248c7c8a94ad816dd44745d05199)
-rw-r--r--templates/machines/qemuarm.jinja24
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/machines/qemuarm.jinja2 b/templates/machines/qemuarm.jinja2
index b389a92..954b188 100644
--- a/templates/machines/qemuarm.jinja2
+++ b/templates/machines/qemuarm.jinja2
@@ -9,8 +9,8 @@
{%- set qemu_model = "model=virtio" %}
{%- set qemu_cpu = "cortex-a15" %}
{%- set qemu_machine = "virt-2.11" %}
-{%- set qemu_memory = "4096" %}
-{%- set qemu_args = "-smp 2 -device intel-hda -device hda-duplex -device usb-ehci -device virtio-rng-pci -device VGA,vgamem_mb=64,edid=on -device qemu-xhci -device usb-tablet -device usb-kbd" %}
+{%- 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_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") %}