diff options
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hobeventhandler.py | 2 | ||||
-rwxr-xr-x | bitbake/lib/bb/ui/hob.py | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py index 817f638189..06a05b67f4 100644 --- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py +++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py | |||
@@ -308,9 +308,7 @@ class HobHandler(gobject.GObject): | |||
308 | self.runCommand(["createConfigFile", ".hob.conf"]) | 308 | self.runCommand(["createConfigFile", ".hob.conf"]) |
309 | 309 | ||
310 | def reset_cooker(self): | 310 | def reset_cooker(self): |
311 | self.runCommand(["enableDataTracking"]) | ||
312 | self.runCommand(["resetCooker"]) | 311 | self.runCommand(["resetCooker"]) |
313 | self.runCommand(["disableDataTracking"]) | ||
314 | 312 | ||
315 | def set_extra_inherit(self, bbclass): | 313 | def set_extra_inherit(self, bbclass): |
316 | inherits = self.runCommand(["getVariable", "INHERIT"]) or "" | 314 | inherits = self.runCommand(["getVariable", "INHERIT"]) or "" |
diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py index 154a3b3b4a..da5b411891 100755 --- a/bitbake/lib/bb/ui/hob.py +++ b/bitbake/lib/bb/ui/hob.py | |||
@@ -46,7 +46,7 @@ from bb.ui.crumbs.hoblistmodel import RecipeListModel, PackageListModel | |||
46 | from bb.ui.crumbs.hobeventhandler import HobHandler | 46 | from bb.ui.crumbs.hobeventhandler import HobHandler |
47 | from bb.ui.crumbs.builder import Builder | 47 | from bb.ui.crumbs.builder import Builder |
48 | 48 | ||
49 | featureSet = [bb.cooker.CookerFeatures.HOB_EXTRA_CACHES] | 49 | featureSet = [bb.cooker.CookerFeatures.HOB_EXTRA_CACHES, bb.cooker.CookerFeatures.BASEDATASTORE_TRACKING] |
50 | 50 | ||
51 | def event_handle_idle_func(eventHandler, hobHandler): | 51 | def event_handle_idle_func(eventHandler, hobHandler): |
52 | # Consume as many messages as we can in the time available to us | 52 | # Consume as many messages as we can in the time available to us |