summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/main.py')
-rwxr-xr-xbitbake/lib/bb/main.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index f1ea7859da..ed3e1ede61 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -395,6 +395,11 @@ def setup_bitbake(configParams, extrafeatures=None):
395 # In status only mode there are no logs and no UI 395 # In status only mode there are no logs and no UI
396 logger.addHandler(handler) 396 logger.addHandler(handler)
397 397
398 if configParams.dump_signatures:
399 if extrafeatures is None:
400 extrafeatures = []
401 extrafeatures.append(bb.cooker.CookerFeatures.RECIPE_SIGGEN_INFO)
402
398 if configParams.server_only: 403 if configParams.server_only:
399 featureset = [] 404 featureset = []
400 ui_module = None 405 ui_module = None