mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-01-11 15:00:39 +00:00
machine-summary.py is a tool to generate a report of what recipes and versions are used for what machines, and what the latest upstream release is. Change-Id: Iecf21a14057df0fd1cb05be9b54c621dfbaddd94 Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
13 lines
284 B
Django/Jinja
13 lines
284 B
Django/Jinja
Machine Overview
|
|
Generated at {{ timestamp }}.
|
|
{% for machine, data in data|dictsort %}
|
|
|
|
MACHINE: {{ machine }}
|
|
{% for recipe in recipes|sort %}
|
|
{% if recipe in data %}
|
|
{% set details = data[recipe] %}
|
|
{{ details.recipe }}: {{ details.version }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|