From: Ed Bartosh Date: Wed, 20 Apr 2016 07:31:28 +0000 (+0300) Subject: bitbake: bitbake: main: add 2 environment variables X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=21b314d4d1e5b8fbeb4cc57006f0a110f0b3aa8f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: bitbake: main: add 2 environment variables Bitbake uses set of environment variables to set command line options, e.g. seeting BBTOKEN variable has the same effect as using --token command line option. Added new environment variables BBPRECONF and BBPOSTCONF that are equivalents of --read and --postread command line options. They can be used by high level scripts to append or prepend configuration files to conf/local.conf [YOCTO #9235] (Bitbake rev: bf604ec1ca4eb4d0b22bcc72249963e6d7445f34) Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py index e3021736963..08ecddaabdc 100755 --- a/bitbake/lib/bb/main.py +++ b/bitbake/lib/bb/main.py @@ -250,6 +250,12 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters): if "BBEVENTLOG" in os.environ: options.writeeventlog = os.environ["BBEVENTLOG"] + if "BBPRECONF" in os.environ: + option.prefile.append(os.environ["BBPRECONF"]) + + if "BBPOSTCONF" in os.environ: + option.postfile.append(os.environ["BBPOSTCONF"]) + # fill in proper log name if not supplied if options.writeeventlog is not None and len(options.writeeventlog) == 0: import datetime