From 7ce27b9fce8dd9c05d98878185f46721cc2e81f3 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Mon, 17 Aug 2015 12:12:20 +0100 Subject: bitbake: cooker: ensure prefile/postfile can work in memory resident mode The prefile/postfile options weren't working in memory resident mode because they weren't being passed through to the server, so ensure that they do get passed through and that the server is reset when the values come through. (Bitbake rev: a3f7dc042fc7b1c308bfd248431930eb8ba50326) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- bitbake/lib/bb/cookerdata.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bitbake/lib/bb/cookerdata.py') diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index 57fc6bb50e..b20040c0b3 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py @@ -73,7 +73,8 @@ class ConfigParameters(object): options = {} for o in ["abort", "tryaltconfigs", "force", "invalidate_stamp", "verbose", "debug", "dry_run", "dump_signatures", - "debug_domains", "extra_assume_provided", "profile"]: + "debug_domains", "extra_assume_provided", "profile", + "prefile", "postfile"]: options[o] = getattr(self.options, o) ret, error = server.runCommand(["updateConfig", options, environment]) -- cgit v1.2.3-54-g00ecf