summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKevin Hilman <khilman@baylibre.com>2017-10-05 09:51:51 -0700
committerKevin Hilman <khilman@baylibre.com>2017-10-05 09:57:16 -0700
commitc69760a8cd33e6843f75658198183249d7cfd044 (patch)
tree0b5f2f403e1aaa66a9800a58f14c5e0424b3c28f /templates
parent52dde34b4c54acabfe0a9a3f77b6869bc144f003 (diff)
templates: rpi3: 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: I961c74cb4854c798125c37a2e4bf772e28e80a62 Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/machines/raspberrypi3.jinja22
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/machines/raspberrypi3.jinja2 b/templates/machines/raspberrypi3.jinja2
index f1e1454..c4a7086 100644
--- a/templates/machines/raspberrypi3.jinja2
+++ b/templates/machines/raspberrypi3.jinja2
@@ -2,4 +2,6 @@
{%- set device_type = "bcm2837-rpi-3-b" %}
{%- set dtb = "uImage-bcm2710-rpi-3-b.dtb" %}
{%- set nbdinitrd = "initramfs-netboot-image-" + yocto_machine +".ext4.gz.u-boot" %}
+{%- set device_arch = "arm64" %}
+{%- set device_mach = "broadcom" %}
{%- set rootfs_type = rootfs_type|default("nbd") %}