aboutsummaryrefslogtreecommitdiff
path: root/templates/boot/generic-uboot-tftp-ramdisk-boot-template.jinja2
diff options
context:
space:
mode:
authorGuillaume Tucker <guillaume.tucker@collabora.com>2018-08-10 13:45:19 +0100
committerMatt Hart <github@blacklabsystems.com>2018-09-03 13:57:17 +0100
commitc6df616f76ee459f009cbf50d8c762010c7b64f6 (patch)
tree519849e26617c73bd3fb3f097e0e61c3a414da09 /templates/boot/generic-uboot-tftp-ramdisk-boot-template.jinja2
parent4641f57a87a63ff93bfce29f56eed9a166153c0a (diff)
templates: rename ramdisk-template to ramdisk-boot-template
In order to be consistent with other test plans, rename boot templates with ramdisk-boot-template and fix templates that extend it accordingly. Signed-off-by: Guillaume Tucker <guillaume.tucker@collabora.com>
Diffstat (limited to 'templates/boot/generic-uboot-tftp-ramdisk-boot-template.jinja2')
-rw-r--r--templates/boot/generic-uboot-tftp-ramdisk-boot-template.jinja220
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/boot/generic-uboot-tftp-ramdisk-boot-template.jinja2 b/templates/boot/generic-uboot-tftp-ramdisk-boot-template.jinja2
new file mode 100644
index 0000000..935c249
--- /dev/null
+++ b/templates/boot/generic-uboot-tftp-ramdisk-boot-template.jinja2
@@ -0,0 +1,20 @@
+{% extends 'base/kernel-ci-base-tftp-deploy.jinja2' %}
+{% block metadata %}
+{{ super() }}
+{% endblock %}
+{% block main %}
+{{ super() }}
+{% endblock %}
+{% block actions %}
+{%- block deploy %}
+{{ super () }}
+{%- endblock %}
+
+- boot:
+ timeout:
+ minutes: 5
+ method: u-boot
+ commands: ramdisk
+ prompts:
+ - '{{ rootfs_prompt }}'
+{% endblock %}