summaryrefslogtreecommitdiffstats
path: root/meta/classes/populate_sdk_ext.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-12-22 16:19:16 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-28 09:25:12 +0000
commitecce3d3774cad55ed1c215000da9f99558fd7fee (patch)
tree4808c4fe7abd4e998620855a5a3bf983d524e937 /meta/classes/populate_sdk_ext.bbclass
parentfd84d0fe35b63e8f3c17ec0fa7cfb33e8567e8c0 (diff)
downloadpoky-ecce3d3774cad55ed1c215000da9f99558fd7fee.tar.gz
classes/populate_sdk_ext: hide build configuration in devtool build* output
The configuration of the build system within the extensible SDK is fixed, so there's not a lot of point in showing it; plus it just gets in the way of the output that's interesting to the user in this context. So let's hide it within the extensible SDK. (From OE-Core rev: 6223b73c2dfc326382dbd3c0ae2d7a0cf2cc3b48) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_ext.bbclass')
-rw-r--r--meta/classes/populate_sdk_ext.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index 3d64e487fe..a824ca4e4a 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -152,6 +152,9 @@ python copy_buildsystem () {
152 # Ensure locked sstate cache objects are re-used without error 152 # Ensure locked sstate cache objects are re-used without error
153 f.write('SIGGEN_LOCKEDSIGS_CHECK_LEVEL = "warn"\n\n') 153 f.write('SIGGEN_LOCKEDSIGS_CHECK_LEVEL = "warn"\n\n')
154 154
155 # Hide the config information from bitbake output (since it's fixed within the SDK)
156 f.write('BUILDCFG_HEADER = ""\n')
157
155 # If you define a sdk_extraconf() function then it can contain additional config 158 # If you define a sdk_extraconf() function then it can contain additional config
156 extraconf = (d.getVar('sdk_extraconf', True) or '').strip() 159 extraconf = (d.getVar('sdk_extraconf', True) or '').strip()
157 if extraconf: 160 if extraconf: