diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2015-03-19 16:05:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-25 12:39:58 +0000 |
commit | 87c4e58dda0e2f62b0c8e4ddc6bec244643b21af (patch) | |
tree | 058a55c9c51786a1711d6724f861a8eba87998bb /bitbake | |
parent | eeef93ad072cce86de9c59d51df2b8ccc4349b2e (diff) | |
download | poky-87c4e58dda0e2f62b0c8e4ddc6bec244643b21af.tar.gz |
bitbake: toasterui: enable sanity checker
Since toasterui acts as the user-facing UI, we need
to run sanity checks in order to let the GUI display proper
warnings and stop the build if something is wrong.
(Bitbake rev: 260dd77fa771ae3b777134f4178d344e96b6f3d6)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/toasterui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py index db119cea67..f0f853be14 100644 --- a/bitbake/lib/bb/ui/toasterui.py +++ b/bitbake/lib/bb/ui/toasterui.py | |||
@@ -41,7 +41,7 @@ import sys | |||
41 | import time | 41 | import time |
42 | import xmlrpclib | 42 | import xmlrpclib |
43 | 43 | ||
44 | featureSet = [bb.cooker.CookerFeatures.HOB_EXTRA_CACHES, bb.cooker.CookerFeatures.SEND_DEPENDS_TREE, bb.cooker.CookerFeatures.BASEDATASTORE_TRACKING] | 44 | featureSet = [bb.cooker.CookerFeatures.HOB_EXTRA_CACHES, bb.cooker.CookerFeatures.SEND_DEPENDS_TREE, bb.cooker.CookerFeatures.BASEDATASTORE_TRACKING, bb.cooker.CookerFeatures.SEND_SANITYEVENTS] |
45 | 45 | ||
46 | logger = logging.getLogger("BitBake") | 46 | logger = logging.getLogger("BitBake") |
47 | interactive = sys.stdout.isatty() | 47 | interactive = sys.stdout.isatty() |