diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/configuration.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/configuration.html | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/configuration.html b/bitbake/lib/toaster/toastergui/templates/configuration.html index 467fbd02ad..ddfa5af9ca 100644 --- a/bitbake/lib/toaster/toastergui/templates/configuration.html +++ b/bitbake/lib/toaster/toastergui/templates/configuration.html | |||
@@ -3,6 +3,8 @@ | |||
3 | <li>Configuration</li> | 3 | <li>Configuration</li> |
4 | {% endblock %} | 4 | {% endblock %} |
5 | 5 | ||
6 | {% load projecttags %} | ||
7 | |||
6 | {% block buildinfomain %} | 8 | {% block buildinfomain %} |
7 | <!-- page title --> | 9 | <!-- page title --> |
8 | <div class="row-fluid span10"> | 10 | <div class="row-fluid span10"> |
@@ -22,15 +24,19 @@ | |||
22 | <div id="summary" class="tab-pane active"> | 24 | <div id="summary" class="tab-pane active"> |
23 | <h3>Build configuration</h3> | 25 | <h3>Build configuration</h3> |
24 | <dl class="dl-horizontal"> | 26 | <dl class="dl-horizontal"> |
25 | <dt>BitBake version</dt><dd>1.19.1</dd> | 27 | {%if BB_VERSION %}<dt>BitBake version</dt><dd>{{BB_VERSION}}</dd> {% endif %} |
26 | <dt>Build system</dt><dd>x86_64-linux</dd> | 28 | {%if BUILD_SYS %}<dt>Build system</dt><dd>{{BUILD_SYS}}</dd> {% endif %} |
27 | <dt>Host distribution</dt><dd>Ubuntu-12.04</dd> | 29 | {%if NATIVELSBSTRING %}<dt>Host distribution</dt><dd>{{NATIVELSBSTRING}}</dd> {% endif %} |
28 | <dt>Target system</dt><dd>i586-poky-linux</dd> | 30 | {%if TARGET_SYS %}<dt>Target system</dt><dd>{{TARGET_SYS}}</dd> {% endif %} |
29 | <dt><i class="icon-question-sign get-help" data-toggle="tooltip" title="Specifies the target device for which the image is built"></i> Machine</dt><dd>atom-pc</dd> | 31 | {%if MACHINE %}<dt>Machine</dt><dd>{{MACHINE}}</dd> {% endif %} |
30 | <dt><i class="icon-question-sign get-help" data-toggle="tooltip" title="The short name of the distribution"></i> Distro</dt><dd>poky</dd> | 32 | {%if DISTRO %}<dt>Distro</dt><dd>{{DISTRO}}</dd> {% endif %} |
31 | <dt>Distro version</dt><dd>1.4+snapshot-20130718</dd> | 33 | {%if DISTRO_VERSION %}<dt>Distro version</dt><dd>{{DISTRO_VERSION}}</dd> {% endif %} |
32 | <dt>Tune features</dt><dd>m32 i586</dd> | 34 | {%if TUNE_FEATURES %}<dt>Tune features</dt><dd>{{TUNE_FEATURES}}</dd> {% endif %} |
33 | <dt>Target(s)</dt><dd>core-image-sato</dd> | 35 | {%if TARGET_FPU %}<dt>Target FPU</dt><dd>{{TARGET_FPU}}</dd> {% endif %} |
36 | {%if targets.all %}<dt>Target(s)</dt> | ||
37 | <dd> <ul> {% for target in targets.all %} | ||
38 | <li>{{target.target}}{%if forloop.counter > 1 %}<br>{% endif %}</li> | ||
39 | {% endfor %} </ul> </dd> {% endif %} | ||
34 | </dl> | 40 | </dl> |
35 | <h3>Layers</h3> | 41 | <h3>Layers</h3> |
36 | <div class="span9" style="margin-left:0px;"> | 42 | <div class="span9" style="margin-left:0px;"> |
@@ -45,7 +51,13 @@ | |||
45 | </thead> | 51 | </thead> |
46 | <tbody>{% for lv in build.layer_version_build.all %} | 52 | <tbody>{% for lv in build.layer_version_build.all %} |
47 | <tr> | 53 | <tr> |
48 | <td>{{lv.layer.name}}<a href="{{lv.layer.layer_index_url}}" target="_blank"> <i class="icon-share get-info"></i></a></td><td>{{lv.branch}}</td><td class="layer_commit"><a data-content="{{lv.commit}}" title="" href="#" class="btn" data-original-title="">{{lv.commit|slice:":8"}}...</a></td><td>{{lv.layer.local_path}}</td> | 54 | <td>{{lv.layer.name}}</td> |
55 | <td>{{lv.branch}}</td> | ||
56 | <td> <a class="btn" data-content="<ul class='unstyled'> | ||
57 | <li>{{lv.commit}}</li> </ul>"> | ||
58 | {{lv.commit|truncatechars:13}} | ||
59 | </a></td> | ||
60 | <td>{{lv.layer.local_path}}</td> | ||
49 | </tr>{% endfor %} | 61 | </tr>{% endfor %} |
50 | </tbody> | 62 | </tbody> |
51 | </table> | 63 | </table> |