Back to Zephyr

Sysinit

scripts/dashboard/templates/sysinit.html

4.4.0788 B
Original Source

{% extends "base.html" %} {% block content %}

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) %} 1. {{call_split[0]}}: {{call_split[1]}} {% endfor %} {% else %} No init functions at this level {% endif %} {% endfor %} {% else %} No sys-init functions found. {% endif %}

{% if build.sys_init_errors %}


Errors in Sys-Init Priorities

{% for error in build.sys_init_errors %} - {{error}} {% endfor %}

{% endif %} {% endblock %}