diff options
author | Chris Larson <chris_larson@mentor.com> | 2011-03-17 08:31:54 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-23 15:43:52 +0000 |
commit | dd3a1d3b4179dd64dd12f20e4568fd7f1c3fc977 (patch) | |
tree | 8752a21927be58b1ba72e75b1986c219d979864d /scripts/bitbake | |
parent | 99aaf155ef8043b87f724a71216b211a30739af8 (diff) | |
download | poky-dd3a1d3b4179dd64dd12f20e4568fd7f1c3fc977.tar.gz |
Shift a few env bits into scripts/bitbake
This attempts to separate the bits we *require* to run bitbake with oe-core
via the wrapper script, and which are independent of the build environment
(PSEUDO_DISABLED, PSEUDO_BUILD, BBFETCH2) from those which are more particular
to poky-init-build-env's way of setting things up (e.g. adding MACHINE to
BB_ENV_EXTRAWHITE, relying on OEROOT, etc). This should make it easier to use
scripts/bitbake with non-standard workflows.
(From OE-Core rev: 7f9d6efcaf019eb046c8aa00735f823e3dbc8712)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/bitbake')
-rwxr-xr-x | scripts/bitbake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/bitbake b/scripts/bitbake index 437d84ee8e..39d5957078 100755 --- a/scripts/bitbake +++ b/scripts/bitbake | |||
@@ -1,4 +1,8 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | |||
3 | export BBFETCH2=True | ||
4 | export BB_ENV_EXTRAWHITE="PSEUDO_BUILD PSEUDO_DISABLED $BB_ENV_EXTRAWHITE" | ||
5 | |||
2 | NO_BUILD_OPTS="--version -h --help -p --parse-only -s --show-versions -e --environment -g --graphviz" | 6 | NO_BUILD_OPTS="--version -h --help -p --parse-only -s --show-versions -e --environment -g --graphviz" |
3 | needpseudo="1" | 7 | needpseudo="1" |
4 | for opt in $@; do | 8 | for opt in $@; do |