summaryrefslogtreecommitdiffstats
path: root/templates/boot/generic-base-boot.jinja2
blob: cfd113f1e436028334964acbb3b6c2933372c50c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{%- extends 'base/agl-simple.jinja2' %}
{%- if rootfs_type == 'nbd' %}
{%- block deploy %}
{{ super() }}
    protocols:
      lava-xnbd:
      - action: nbd-deploy
        request: set_port
{%- endblock %}
{%- endif %}
{%- block boot %}
{{ super() }}
- boot:
    timeout:
      minutes: {{ boot_timeout }}
    method: {{ boot_method|default("u-boot") }}
{%- if qemu_docker %}
    docker:
      image: kernelci/qemu
      binary: {{ qemu_binary }}
{%- endif %}
{%- include 'boot/agl-prompt.jinja' %}
{%- endblock %}