summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake-runtask
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin/bitbake-runtask')
-rwxr-xr-xbitbake/bin/bitbake-runtask5
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-runtask b/bitbake/bin/bitbake-runtask
index 3b37853f06..88101a5c0f 100755
--- a/bitbake/bin/bitbake-runtask
+++ b/bitbake/bin/bitbake-runtask
@@ -79,8 +79,11 @@ hashdata = p.load()
79 79
80debug = hashdata["msg-debug"] 80debug = hashdata["msg-debug"]
81debug_domains = hashdata["msg-debug-domains"] 81debug_domains = hashdata["msg-debug-domains"]
82cooker = bb.cooker.BBCooker(BBConfiguration(debug, debug_domains), None) 82verbose = hashdata["verbose"]
83
84bb.utils.init_logger(bb.msg, verbose, debug, debug_domains)
83 85
86cooker = bb.cooker.BBCooker(BBConfiguration(debug, debug_domains), None)
84cooker.parseConfiguration() 87cooker.parseConfiguration()
85 88
86cooker.bb_cache = bb.cache.init(cooker) 89cooker.bb_cache = bb.cache.init(cooker)