This section shows the list of initialization functions at each
level, in order of invocation. Any conflicts in priority
with Device Tree dependencies will also be shown below.
{% if build.sys_init_levels %}
{% for level, calls in build.sys_init_levels.items() %}
{{level}}
{% if calls %}
{% for call in calls %}
{% set call_split = call.split(':', maxsplit=1) %}
{{call_split[0]}}: {{call_split[1]}}
{% endfor %}
{% else %}
No init functions at this level
{% endif %}
{% endfor %}
{% else %}