diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-01-08 11:17:21 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-11 23:26:33 +0000 |
commit | 89f493261a718603936f95654953f60b558670ec (patch) | |
tree | 287d594f526fa3741eba6075b85ccba7d7cccd42 /bitbake/lib | |
parent | febb898a065bd5eb8cd11e4b57ae83e7cdaab526 (diff) | |
download | poky-89f493261a718603936f95654953f60b558670ec.tar.gz |
bitbake: toaster: show 'satisfied via' text for build deps
Showed '<dependency> satisfied via <provider>' text and
help tooltip for the build dependencies provided through
'PROVIDES' in the 'Build dependencies' tab.
[YOCTO #6169]
(Bitbake rev: de77e338fe70341fe98561e2e40b534f5c88db10)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/recipe.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipe.html b/bitbake/lib/toaster/toastergui/templates/recipe.html index bbe747517d..d6b464b9a8 100644 --- a/bitbake/lib/toaster/toastergui/templates/recipe.html +++ b/bitbake/lib/toaster/toastergui/templates/recipe.html | |||
@@ -172,7 +172,14 @@ | |||
172 | 172 | ||
173 | {% for rr in object.r_dependencies_recipe.all|dictsort:"depends_on.name" %} | 173 | {% for rr in object.r_dependencies_recipe.all|dictsort:"depends_on.name" %} |
174 | <tr> | 174 | <tr> |
175 | <td><a href="{% url "recipe" build.pk rr.depends_on.pk %}">{{rr.depends_on.name}}</a></td> | 175 | <td><a href="{% url "recipe" build.pk rr.depends_on.pk %}">{{rr.depends_on.name}}</a> |
176 | {% if rr.via %} | ||
177 | <span class="muted">satisfied via {{rr.via.name}}</span> | ||
178 | <i class="icon-question-sign get-help hover-help" | ||
179 | title="This dependency is satisfied by the PROVIDES value | ||
180 | {{rr.via.name}} in the {{rr.depends_on.name}} recipe"></i> | ||
181 | {% endif %} | ||
182 | </td> | ||
176 | <td><a href="{% url "recipe" build.pk rr.depends_on.pk %}">{{rr.depends_on.version}}</a></td> | 183 | <td><a href="{% url "recipe" build.pk rr.depends_on.pk %}">{{rr.depends_on.version}}</a></td> |
177 | </tr> | 184 | </tr> |
178 | {% endfor %} | 185 | {% endfor %} |