blob: 62c657e5acbce8fbf853657eb518b88f52d340ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{%- extends 'boot/generic-base-boot.jinja2' %}
{%- set boot_method = "u-boot" %}
{%- block main %}
{{ super() }}
{%- if rootfs_type == 'nbd' %}
protocols:
lava-xnbd:
port: auto
{%- endif %}
{% endblock %}
{%- block boot %}
{{ super() }}
commands: {{ boot_commands|default("ramdisk") }}
{%- if rootfs_type == 'nbd' %}
type: {{ uboot_type|default("bootm") }}
transfer_overlay:
download_command: wget
unpack_command: tar -C / -xvpf
{%- endif %}
{%- endblock %}
{%- block deploy -%}
{{ super() }}
kernel:
url: {{ kernel_url }}
{%- if rootfs_type == 'ramdisk' %}
type: {{ kernel_type }}
ramdisk:
url: {{ initrd_url }}
compression: {{ initrd_compression }}
{%- elif rootfs_type == 'nbd' %}
initrd:
url: {{ initrd_url }}
allow_modify: false
nbdroot:
url: {{ rootfs_url }}
compression: {{ rootfs_compression }}
{%- endif %}
{%- if modules_url %}
modules:
url: {{ modules_url }}
compression: {{ modules_compression }}
{%- endif %}
{%- if dtb_url %}
dtb:
url: {{ dtb_url }}
{%- endif %}
{%- endblock %}
|