summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-24 12:56:49 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-25 18:14:53 +0100
commite3a864c4a351e55ac4ad003d166c87cbb6817d42 (patch)
tree0fcb87d820869e2d3bfbd4af0336cf4130f77c05 /bitbake/lib
parent6def374f134e1d1e46c7e21e0feb1d00ffe5d3e9 (diff)
downloadpoky-e3a864c4a351e55ac4ad003d166c87cbb6817d42.tar.gz
bitbake: cookerdata: Ensure UI options are updated to the server
There were some options which were not being passed to the server. This was breaking, particularly in memory resident bitbake mode. Add the missing options to the correct place to ensure the server is updated correctly. (Bitbake rev: 5dc178e7fae3ca8558146e385a05f5d96a021777) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/cookerdata.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py
index f43610e7f8..9eddf7cf6a 100644
--- a/bitbake/lib/bb/cookerdata.py
+++ b/bitbake/lib/bb/cookerdata.py
@@ -60,7 +60,9 @@ class ConfigParameters(object):
60 for o in ["abort", "force", "invalidate_stamp", 60 for o in ["abort", "force", "invalidate_stamp",
61 "dry_run", "dump_signatures", 61 "dry_run", "dump_signatures",
62 "extra_assume_provided", "profile", 62 "extra_assume_provided", "profile",
63 "prefile", "postfile", "server_timeout"]: 63 "prefile", "postfile", "server_timeout",
64 "nosetscene", "setsceneonly", "skipsetscene",
65 "runall", "runonly"]:
64 options[o] = getattr(self.options, o) 66 options[o] = getattr(self.options, o)
65 67
66 options['build_verbose_shell'] = self.options.verbose 68 options['build_verbose_shell'] = self.options.verbose