summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: