diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2019-04-30 17:28:45 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2019-04-30 17:28:45 +0200 |
commit | 35333bf87d61b691c2e4834e359ce9e4a24ca251 (patch) | |
tree | b951e0bd89aca06dd326161aaefd03891264c877 /templates/machines | |
parent | 0476469c1b5272b7a76b22082f0cd44eab24dc22 (diff) |
Fix rfs_image for qemux86-64
Change-Id: Ieadfc20e9abbc01a272faf16f59d88ff0f1a3ff5
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'templates/machines')
-rw-r--r-- | templates/machines/qemux86-64.jinja2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/machines/qemux86-64.jinja2 b/templates/machines/qemux86-64.jinja2 index 122fa6d..1aa9b22 100644 --- a/templates/machines/qemux86-64.jinja2 +++ b/templates/machines/qemux86-64.jinja2 @@ -8,7 +8,7 @@ {%- set qemu_args = "-cpu qemu64,+ssse3,+sse4.1,+sse4.2,+popcnt -smp 2 -m 2048 -soundhw hda -device usb-ehci" %} {%- set qemu_cmdline = "console=ttyS0,115200 root=/dev/hda debug verbose systemd.log_color=false " %} {%- set rootfs_type = rootfs_type|default("ramdisk") %} -{%- if build_type == 'release' %} +{%- if (build_type == 'daily') or (build_type == 'release') or (build_type == 'snapshot') %} {%- set rfs_image = rfs_image|default("agl-demo-platform-crosssdk-qemux86-64.ext4.xz") %} {%- else %} {%- set rfs_image = rfs_image|default("agl-demo-platform-qemux86-64.ext4.xz") %} |