aboutsummaryrefslogtreecommitdiff
path: root/templates/boot
diff options
context:
space:
mode:
authorMatt Hart <matthew.hart@linaro.org>2016-10-19 18:19:29 +0100
committerMatt Hart <matthew.hart@linaro.org>2016-10-19 18:19:29 +0100
commit856f25615ba5d165e2abc31eed1514b1fc0fd017 (patch)
tree1e1fbdf9f65421958008ae650238ebdddbe58302 /templates/boot
parent4601a78496c824d57d4b326ef7631ab99da5fc91 (diff)
Add the first LAVA v2 templates
and make the old lava-kernel-ci-job-creator.py script only recognise files with ".json" suffix.
Diffstat (limited to 'templates/boot')
-rw-r--r--templates/boot/apq8016-sbc-boot-template.jinja235
1 files changed, 35 insertions, 0 deletions
diff --git a/templates/boot/apq8016-sbc-boot-template.jinja2 b/templates/boot/apq8016-sbc-boot-template.jinja2
new file mode 100644
index 0000000..5e135f3
--- /dev/null
+++ b/templates/boot/apq8016-sbc-boot-template.jinja2
@@ -0,0 +1,35 @@
+{% extends 'base/kernel-ci-base.jinja2' %}
+{% block metadata %}
+{{ super() }}
+{% endblock %}
+{% block main %}
+{{ super() }}
+{% endblock %}
+{% block actions %}
+actions:
+ - deploy:
+ timeout:
+ minutes: 2
+ to: tftp
+ kernel:
+ url: {{ kernel_url }}
+ type: image
+ ramdisk:
+ url: http://storage.kernelci.org/images/rootfs/buildroot/arm64/rootfs.cpio.gz
+ compression: gz
+ modules:
+ url: {{ modules_url }}
+ compression: xz
+ dtb:
+ url: {{ dtb_url }}
+ os: oe
+
+ - boot:
+ method: u-boot
+ commands: ramdisk
+ type: image
+ prompts:
+ - 'linaro-test'
+ - 'root@debian:~#'
+ - '/ #'
+{% endblock %}