diff options
author | Farrell Wymore <farrell.wymore@windriver.com> | 2014-03-11 14:48:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-17 13:59:38 +0000 |
commit | d40ac966b22e1fa1956d8f2fe37fd55fa670e88f (patch) | |
tree | 00f0114da6396c1cbbbed18b2bc28382bf118571 /bitbake/lib/toaster/toastergui/templates/build.html | |
parent | 3cbe113771c5beef69ffce5bc98ff664d67b84b3 (diff) | |
download | poky-d40ac966b22e1fa1956d8f2fe37fd55fa670e88f.tar.gz |
bitbake: toaster: added file types to the Outputs column in the build page
The file types are displayed in the Outputs column in the build page.
The file types are derived from the target image filenames.
[YOCTO #5947]
(Bitbake rev: 37ae4e94d6991d4f05b0236b525e29797ed6e49c)
Signed-off-by: Farrell Wymore <farrell.wymore@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/build.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/build.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/build.html b/bitbake/lib/toaster/toastergui/templates/build.html index 3c9256cbd0..f1fa70d068 100644 --- a/bitbake/lib/toaster/toastergui/templates/build.html +++ b/bitbake/lib/toaster/toastergui/templates/build.html | |||
@@ -92,7 +92,11 @@ | |||
92 | <td class="warnings_no">{% if build.warnings_no %}<a class="warnings_no warning" href="{% url "builddashboard" build.id %}#warnings">{{build.warnings_no}} warning{{build.warnings_no|pluralize}}</a>{%endif%}</td> | 92 | <td class="warnings_no">{% if build.warnings_no %}<a class="warnings_no warning" href="{% url "builddashboard" build.id %}#warnings">{{build.warnings_no}} warning{{build.warnings_no|pluralize}}</a>{%endif%}</td> |
93 | <td class="time"><a href="{% url "buildtime" build.id %}">{{build.timespent|sectohms}}</a></td> | 93 | <td class="time"><a href="{% url "buildtime" build.id %}">{{build.timespent|sectohms}}</a></td> |
94 | <td class="log">{{build.cooker_log_path}}</td> | 94 | <td class="log">{{build.cooker_log_path}}</td> |
95 | <td class="output">{% if build.outcome == 0 %}{% for t in build.target_set.all %}{% if t.is_image %}<a href="{%url "builddashboard" build.id%}#images">TODO: compute image output fstypes</a>{% endif %}{% endfor %}{% endif %}</td> | 95 | <td class="output"> |
96 | {% if build.outcome == 0 %} | ||
97 | {{build|get_image_extensions}} | ||
98 | {% endif %} | ||
99 | </td> | ||
96 | </tr> | 100 | </tr> |
97 | 101 | ||
98 | {% endfor %} | 102 | {% endfor %} |