aboutsummaryrefslogtreecommitdiffstats
path: root/templates/boot/generic-base-boot.jinja2
blob: a8e253ad6d565331e592080524df70809ca0d197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{%- 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") }}
{%- include 'boot/agl-prompt.jinja' %}
{%- endblock %}