From ff5fba8462151364a3834453ee5c861f471cf8d3 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 23 Sep 2014 12:58:22 +0100 Subject: bitbake: knotty: Ensure commandline parameters are updated in memres server When using options like -k, -f, -v and so on with the memory resident server, they'd currently only be set on the initial values passed to the original command. This ensures they now match those specified on the commandline for the options where this makes sense. To make this work, a command to update the options on the server side is required so this is added. [YOCTO #5292] (Bitbake rev: 1c75cc4d0c8b606c1fe76e6bf60bf6a32298b105) Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/knotty.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake/lib/bb/ui') diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 307886d780..9e58b31727 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py @@ -284,6 +284,7 @@ def main(server, eventHandler, params, tf = TerminalFilter): if not params.observe_only: params.updateFromServer(server) + params.updateToServer(server) cmdline = params.parseActions() if not cmdline: print("Nothing to do. Use 'bitbake world' to build everything, or run 'bitbake --help' for usage information.") -- cgit v1.2.3-54-g00ecf