diff options
Diffstat (limited to 'templates/machines/qemux86-64.jinja2')
-rw-r--r-- | templates/machines/qemux86-64.jinja2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/machines/qemux86-64.jinja2 b/templates/machines/qemux86-64.jinja2 index 905136e..1c4d44d 100644 --- a/templates/machines/qemux86-64.jinja2 +++ b/templates/machines/qemux86-64.jinja2 @@ -1,8 +1,8 @@ {%- extends 'boot/generic-qemu-tmpfs.jinja2' %} +{%- set deploy_to = "tmpfs" %} {%- set device_type = "qemu" %} -{%- set rootfs_type = rootfs_type|default("ramdisk") %} {%- set kernel_image = "bzImage" %} -{%- set qemu_cmdline = "console=ttyS0,115200 root=/dev/hda debug verbose" %} -{%- set qemu_args = "-cpu qemu64,+ssse3,+sse4.1,+sse4.2,+popcnt -m 1048 -soundhw hda" %} {%- set qemu_arch = "x86_64" %} -{%- set deploy_to = "tmpfs" %} +{%- set qemu_args = "-cpu qemu64,+ssse3,+sse4.1,+sse4.2,+popcnt -m 1048 -soundhw hda" %} +{%- set qemu_cmdline = "console=ttyS0,115200 root=/dev/hda debug verbose" %} +{%- set rootfs_type = rootfs_type|default("ramdisk") %} |