summaryrefslogtreecommitdiffstats
path: root/lib/bb/cooker.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-13 14:02:56 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-13 22:05:10 +0100
commit473deeb0fc6065693e1fcfcbb8b79753103db537 (patch)
tree4a3333fd1f6cb7f807d98c72ecbaed263d0ca018 /lib/bb/cooker.py
parent5ddaf5b7ed1001d2dd3f67e7a6d704afa85479d2 (diff)
downloadbitbake-contrib-473deeb0fc6065693e1fcfcbb8b79753103db537.tar.gz
cooker/toasterui: Drop SEND_DEPENDS_TREE UI feature
Now the event is sent unconditionally we can drop this feature as its no longer needed. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cooker.py')
-rw-r--r--lib/bb/cooker.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index fe6fc99c1..5b76b4d20 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -93,7 +93,7 @@ class SkippedPackage:
class CookerFeatures(object):
- _feature_list = [HOB_EXTRA_CACHES, SEND_DEPENDS_TREE, BASEDATASTORE_TRACKING, SEND_SANITYEVENTS] = range(4)
+ _feature_list = [HOB_EXTRA_CACHES, BASEDATASTORE_TRACKING, SEND_SANITYEVENTS] = range(3)
def __init__(self):
self._features=set()
@@ -360,15 +360,9 @@ class BBCooker:
# set our handler's event processor
event = EventWriter(self) # self is the cooker here
-
- # set up cooker features for this mock UI handler
-
- # we need to write the dependency tree in the log
- self.featureset.setFeature(CookerFeatures.SEND_DEPENDS_TREE)
# register the log file writer as UI Handler
bb.event.register_UIHhandler(EventLogWriteHandler())
-
#
# Copy of the data store which has been expanded.
# Used for firing events and accessing variables where expansion needs to be accounted for