diff options
author | Saul Wold <sgw@linux.intel.com> | 2017-07-17 09:20:14 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-21 22:45:19 +0100 |
commit | ebdd9b5a19eb6fb6c3249be4f0e2480a3de2aa8f (patch) | |
tree | 7b54d9dcfb0069b4d2bc5e50a9ddb2129c8128a6 | |
parent | aef5d6052a60f506e842110381a221aed042e054 (diff) | |
download | openembedded-core-ebdd9b5a19eb6fb6c3249be4f0e2480a3de2aa8f.tar.gz openembedded-core-ebdd9b5a19eb6fb6c3249be4f0e2480a3de2aa8f.tar.bz2 openembedded-core-ebdd9b5a19eb6fb6c3249be4f0e2480a3de2aa8f.zip |
populate_sdk_ext: Add variable to indicate running in eSDK
This allows for other scripts to know that they are being executed in
the context of the eSDK in order to provide different behaviour as
needed.
[YOCTO #11155]
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index e31ee3722b..08973a264c 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -351,6 +351,9 @@ python copy_buildsystem () { # Hide the config information from bitbake output (since it's fixed within the SDK) f.write('BUILDCFG_HEADER = ""\n\n') + f.write('# Provide a flag to indicate we are in the EXT_SDK Context\n') + f.write('WITHIN_EXT_SDK = "1"\n\n') + # Map gcc-dependent uninative sstate cache for installer usage f.write('SSTATE_MIRRORS += " file://universal/(.*) file://universal-4.9/\\1 file://universal-4.9/(.*) file://universal-4.8/\\1"\n\n') |