diff options
author | Kevin Hilman <khilman@baylibre.com> | 2018-05-03 11:50:06 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2018-05-03 11:50:09 -0700 |
commit | 71712ffb1245519612e220d9e8bc7d38e46f7e67 (patch) | |
tree | 3910c84a36bf7f3445950db7a62fcfb2a0519ba0 /templates/machines/porter.jinja2 | |
parent | 935943940a311c3484397d772a48b9a0ac4b1ba6 (diff) |
templates/machines: porter: add device_arch and device_mach
Add missing fields to machine templated. Needed for correct LAVA job
output.
Change-Id: Ia4d55dad0c3fee7d5b5faa4e756a13a5e91af86c
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'templates/machines/porter.jinja2')
-rw-r--r-- | templates/machines/porter.jinja2 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/machines/porter.jinja2 b/templates/machines/porter.jinja2 index b455922..1de7f2d 100644 --- a/templates/machines/porter.jinja2 +++ b/templates/machines/porter.jinja2 @@ -1,4 +1,6 @@ {%- extends 'boot/generic-uboot-tftp.jinja2' %} +{%- set device_arch = "arm64" %} +{%- set device_mach = "renesas" %} {%- set device_type = "renesas-porter-uboot" %} {%- set dtb = dtb|default("uImage-r8a7791-porter.dtb") %} {%- set initrd = initrd|default("initramfs-netboot-image-" + yocto_machine +".ext4.gz.u-boot") %} |