diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-01-08 11:17:22 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-11 23:26:33 +0000 |
commit | dff7a277e31d62d32938cc676db3d8cc0242924d (patch) | |
tree | 39864ebed8a0532e5335e10ef20c94d7cd771bf9 /bitbake | |
parent | 89f493261a718603936f95654953f60b558670ec (diff) | |
download | poky-dff7a277e31d62d32938cc676db3d8cc0242924d.tar.gz |
bitbake: toaster: show 'satisfied via' text for reverse deps
Showed '<dependency> satisfied via <provider>' text and
help tooltip for the reverse build dependencies provided
through 'PROVIDES' in the 'Reverse build dependencies' tab.
[YOCTO #6169]
(Bitbake rev: c7bb98e2e2111790ded86087b13c8b49462d6b75)
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')
-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 d6b464b9a8..1d6d64e3c7 100644 --- a/bitbake/lib/toaster/toastergui/templates/recipe.html +++ b/bitbake/lib/toaster/toastergui/templates/recipe.html | |||
@@ -211,7 +211,14 @@ | |||
211 | 211 | ||
212 | {% for rr in object.r_dependencies_depends.all|dictsort:"recipe.name" %} | 212 | {% for rr in object.r_dependencies_depends.all|dictsort:"recipe.name" %} |
213 | <tr> | 213 | <tr> |
214 | <td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.name}}</a></td> | 214 | <td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.name}}</a> |
215 | {% if rr.via %} | ||
216 | <span class="muted"> satisfied via {{rr.via.name}}</span> | ||
217 | <i class="icon-question-sign get-help hover-help" | ||
218 | title="This dependency is satisfied by the PROVIDES value | ||
219 | {{rr.via.name}} in the {{rr.depends_on.name}} recipe"></i> | ||
220 | {% endif %} | ||
221 | </td> | ||
215 | <td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.version}}</a></td> | 222 | <td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.version}}</a></td> |
216 | </tr> | 223 | </tr> |
217 | {% endfor %} | 224 | {% endfor %} |