From e3a864c4a351e55ac4ad003d166c87cbb6817d42 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 24 Aug 2020 12:56:49 +0100 Subject: 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 --- bitbake/lib/bb/cookerdata.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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): 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 -- cgit v1.2.3-54-g00ecf