diff options
author | Kevin Hilman <khilman@baylibre.com> | 2017-10-05 09:30:05 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2017-10-05 09:30:09 -0700 |
commit | dd6a6e59799992764889d79d1564a8365f79163d (patch) | |
tree | 2e95585d0c99856307cf19d28770a99a23b03280 /templates | |
parent | 52dde34b4c54acabfe0a9a3f77b6869bc144f003 (diff) |
templates: qemu: add device_arch, device_mach
device_arch and device_mach are needed for metadata fields
used when submitting results to a kernelCI backend.
Ensure they have proper defaults.
Change-Id: I8789ab4590c7f133afbfe10c481deb2621e5e978
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/machines/qemux86-64.jinja2 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/machines/qemux86-64.jinja2 b/templates/machines/qemux86-64.jinja2 index 1c4d44d..a7aaa6d 100644 --- a/templates/machines/qemux86-64.jinja2 +++ b/templates/machines/qemux86-64.jinja2 @@ -2,6 +2,8 @@ {%- set deploy_to = "tmpfs" %} {%- set device_type = "qemu" %} {%- set kernel_image = "bzImage" %} +{%- set device_arch = "x86_64" %} +{%- set device_mach = "x86" %} {%- set qemu_arch = "x86_64" %} {%- 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" %} |