diff options
Diffstat (limited to 'templates/machines')
-rw-r--r-- | templates/machines/qemuarm.jinja2 | 1 | ||||
-rw-r--r-- | templates/machines/qemuarm64.jinja2 | 1 | ||||
-rw-r--r-- | templates/machines/qemux86-64.jinja2 | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/templates/machines/qemuarm.jinja2 b/templates/machines/qemuarm.jinja2 index 624986a..1cde86d 100644 --- a/templates/machines/qemuarm.jinja2 +++ b/templates/machines/qemuarm.jinja2 @@ -6,6 +6,7 @@ {%- set sdk_arch = "arm" %} {%- set device_mach = "arm" %} {%- set qemu_arch = "arm" %} +{%- set qemu_model = "model=virtio" %} {%- set qemu_cpu = "cortex-a15" %} {%- set qemu_machine = "virt-2.11" %} {%- set qemu_memory = "2048" %} diff --git a/templates/machines/qemuarm64.jinja2 b/templates/machines/qemuarm64.jinja2 index 0e280eb..73e13c2 100644 --- a/templates/machines/qemuarm64.jinja2 +++ b/templates/machines/qemuarm64.jinja2 @@ -6,6 +6,7 @@ {%- set sdk_arch = "aarch64" %} {%- set device_mach = "arm64" %} {%- set qemu_arch = "aarch64" %} +{%- set qemu_model = "model=virtio" %} {%- set qemu_cpu = "cortex-a57" %} {%- set qemu_machine = "virt" %} {%- set qemu_memory = "2048" %} diff --git a/templates/machines/qemux86-64.jinja2 b/templates/machines/qemux86-64.jinja2 index fc4609d..74b3915 100644 --- a/templates/machines/qemux86-64.jinja2 +++ b/templates/machines/qemux86-64.jinja2 @@ -6,6 +6,7 @@ {%- set sdk_arch = "x86-64" %} {%- set device_mach = "x86" %} {%- set qemu_arch = "x86_64" %} +{%- set qemu_model = "model=virtio" %} {%- set qemu_args = "-machine q35 -cpu qemu64,+ssse3,+sse4.1,+sse4.2,+popcnt -smp 2 -m 2048 -soundhw hda -device usb-ehci -device virtio-rng-pci -vga virtio -device qemu-xhci -device usb-tablet -device usb-kbd " %} {%- set qemu_cmdline = "console=ttyS0,115200 root=/dev/sda verbose systemd.log_color=false rw fstab=no no_timer_check" %} {%- set rootfs_type = rootfs_type|default("rootvd") %} |