Add 128MB ram to fallback video device.

This commit is contained in:
Martin Wimpress 2020-04-04 12:57:15 +01:00
parent 0b19d918d9
commit e78bb9dc88
No known key found for this signature in database
GPG key ID: 61DF940515E06DA3

View file

@ -331,7 +331,7 @@ function vm_boot() {
elif [ "${DISPLAY_DEVICE}" == "virtio-vga" ]; then
VIDEO="-device ${DISPLAY_DEVICE},virgl=${VIRGL},xres=${X_RES},yres=${Y_RES}"
else
VIDEO=" -device VGA,vgamem_mb=32,xres=${X_RES},yres=${Y_RES}"
VIDEO="-device VGA,vgamem_mb=128,xres=${X_RES},yres=${Y_RES}"
fi
echo " - Video: ${DISPLAY_DEVICE}"