summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2013-09-18 13:15:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-22 12:19:44 +0100
commit0c51d610e1bdb16ec96c29ec2b92de922f67b009 (patch)
tree41034a42a5129b782e0f6d5a26fa2091b4475699 /bitbake/lib/bb/ui/crumbs
parent5ee82d404897c6af8d7cdfc728c6ba007bfd76b7 (diff)
downloadpoky-0c51d610e1bdb16ec96c29ec2b92de922f67b009.tar.gz
bitbake: bitbake: cooker: get extra information from recipe cache
The loaded cache modules may add extra attributes to the recipecache, that will be populated by the cache classes required by the UI. These attributes will be used by the UI to display relevant information. Adds cachefields cache class field to specify for each cache class which attributes will be set in the recipecache. Adds code to automatically expand depends tree with the fields exported by the extra cache class. Fixes a cache field name in the HOB UI. (Bitbake rev: 47c171005fb3803d936e65fcd4436c643883ae16) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hoblistmodel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
index 74d335c88b..b4d2a621b7 100644
--- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
@@ -690,7 +690,7 @@ class RecipeListModel(gtk.ListStore):
690 inherits = event_model["pn"][item]["inherits"] 690 inherits = event_model["pn"][item]["inherits"]
691 summary = event_model["pn"][item]["summary"] 691 summary = event_model["pn"][item]["summary"]
692 version = event_model["pn"][item]["version"] 692 version = event_model["pn"][item]["version"]
693 revision = event_model["pn"][item]["revision"] 693 revision = event_model["pn"][item]["prevision"]
694 homepage = event_model["pn"][item]["homepage"] 694 homepage = event_model["pn"][item]["homepage"]
695 bugtracker = event_model["pn"][item]["bugtracker"] 695 bugtracker = event_model["pn"][item]["bugtracker"]
696 filename = event_model["pn"][item]["filename"] 696 filename = event_model["pn"][item]["filename"]