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>
This commit is contained in:
Richard Purdie
2020-08-24 12:56:49 +01:00
parent 6def374f13
commit e3a864c4a3

View File

@@ -60,7 +60,9 @@ class ConfigParameters(object):
for o in ["abort", "force", "invalidate_stamp",
"dry_run", "dump_signatures",
"extra_assume_provided", "profile",
"prefile", "postfile", "server_timeout"]:
"prefile", "postfile", "server_timeout",
"nosetscene", "setsceneonly", "skipsetscene",
"runall", "runonly"]:
options[o] = getattr(self.options, o)
options['build_verbose_shell'] = self.options.verbose