mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-16 15:57:19 +00:00
scripts: add machine summary report tool
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>
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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 %}
|
||||
Reference in New Issue
Block a user