diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-01-08 11:17:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-11 23:26:33 +0000 |
commit | febb898a065bd5eb8cd11e4b57ae83e7cdaab526 (patch) | |
tree | bfeb21f8c4e10fa6b22c79fd63e8372ebaf672f3 | |
parent | 2ff4ccb13f6046783cddb734ee98093721bb30cc (diff) | |
download | poky-febb898a065bd5eb8cd11e4b57ae83e7cdaab526.tar.gz |
bitbake: toaster: show list of provides for the recipe
Showed list of names that recipe provides.
(Bitbake rev: 60318c9a049292bd33322d8446a629d778337e8a)
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>
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/recipe.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipe.html b/bitbake/lib/toaster/toastergui/templates/recipe.html index c6ae2f3802..bbe747517d 100644 --- a/bitbake/lib/toaster/toastergui/templates/recipe.html +++ b/bitbake/lib/toaster/toastergui/templates/recipe.html | |||
@@ -71,6 +71,16 @@ | |||
71 | Layer commit | 71 | Layer commit |
72 | </dt> | 72 | </dt> |
73 | <dd class="iscommit">{{layer_version.commit}}</dd> | 73 | <dd class="iscommit">{{layer_version.commit}}</dd> |
74 | {% if object.provides_set.all %} | ||
75 | <dt> | ||
76 | <i class="icon-question-sign get-help" | ||
77 | title="A list of aliases by which a particular recipe can be known. The additional aliases are | ||
78 | synonyms for the recipe and can be useful satisfying dependencies of other recipes during | ||
79 | the build"></i> | ||
80 | PROVIDES | ||
81 | </dt> | ||
82 | <dd><code>{% for provider in object.provides_set.all %}{{ provider.name }} {% endfor %}</code></dd> | ||
83 | {% endif %} | ||
74 | </dl> | 84 | </dl> |
75 | 85 | ||
76 | <h2 class="details">Tasks</h2> | 86 | <h2 class="details">Tasks</h2> |