Back to Zephyr

Kconfig

scripts/dashboard/templates/kconfig.html

4.4.0514 B
Original Source

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

{{build.kconfig_file.absolute()}}

ValueSource
{% for kc in build.kconfigs %}{{kc.sym_type}}{{kc.name}} {% if not kc.visible %} {% endif %} {% if kconfig_browser and "CONFIG_DT_HAS_" not in kc.name %} {% endif %}{% if kc.src == "unset" %} Not set {% else %} {{kc.value}} {% endif %}
{% endfor %}

{% endblock %}