aboutsummaryrefslogtreecommitdiffstats
path: root/templates/machines/dra7xx-evm.jinja2
diff options
context:
space:
mode:
authorKevin Hilman <khilman@baylibre.com>2017-11-28 16:27:08 -0800
committerKevin Hilman <khilman@baylibre.com>2017-11-28 16:27:12 -0800
commitc957c547c19a6692a01164b68e5ba111a5bf4d9f (patch)
tree626dec3d77fc317d6999f7a21be0944b56130c08 /templates/machines/dra7xx-evm.jinja2
parent98f645934101ee3fbe014f99c993524a59a324fc (diff)
templates/machines: dra7xx-evm: add arch/mach; fix rfs_image
Add default arch and mach fields for kCI metadata. Also set default rfs_image to use agl-demo-platform. Tested by creating a default job: ./utils/create-jobs.py --machine dra7xx-evm -o job.yaml and running successfully in AGL-core LAVA lab. Change-Id: Iaf7a0b86034d1b742a5e2b9e08f882bf64dde995 Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'templates/machines/dra7xx-evm.jinja2')
-rw-r--r--templates/machines/dra7xx-evm.jinja23
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/machines/dra7xx-evm.jinja2 b/templates/machines/dra7xx-evm.jinja2
index ae3d97b..35cb4c6 100644
--- a/templates/machines/dra7xx-evm.jinja2
+++ b/templates/machines/dra7xx-evm.jinja2
@@ -1,6 +1,9 @@
{%- extends 'boot/generic-uboot-tftp.jinja2' %}
{%- set device_type = "ti-vayu-uboot" %}
+{%- set device_arch = "arm" %}
+{%- set device_mach = "omap2" %}
{%- set dtb = dtb|default("zImage-dra7-evm-lcd-lg.dtb") %}
{%- set kernel_image = kernel_image|default("zImage") %}
{%- set rootfs_type = rootfs_type|default("nbd") %}
+{%- set rfs_image = rfs_image|default("agl-demo-platform-dra7xx-evm.ext4.xz") %}
{%- set uboot_type = "bootz" %}