diff options
-rwxr-xr-x | bitbake/lib/bb/main.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py index e302173696..08ecddaabd 100755 --- a/bitbake/lib/bb/main.py +++ b/bitbake/lib/bb/main.py | |||
@@ -250,6 +250,12 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters): | |||
250 | if "BBEVENTLOG" in os.environ: | 250 | if "BBEVENTLOG" in os.environ: |
251 | options.writeeventlog = os.environ["BBEVENTLOG"] | 251 | options.writeeventlog = os.environ["BBEVENTLOG"] |
252 | 252 | ||
253 | if "BBPRECONF" in os.environ: | ||
254 | option.prefile.append(os.environ["BBPRECONF"]) | ||
255 | |||
256 | if "BBPOSTCONF" in os.environ: | ||
257 | option.postfile.append(os.environ["BBPOSTCONF"]) | ||
258 | |||
253 | # fill in proper log name if not supplied | 259 | # fill in proper log name if not supplied |
254 | if options.writeeventlog is not None and len(options.writeeventlog) == 0: | 260 | if options.writeeventlog is not None and len(options.writeeventlog) == 0: |
255 | import datetime | 261 | import datetime |