summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/populate_sdk_ext.bbclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index 0812eead0a..fc9cc223b6 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -308,7 +308,10 @@ python copy_buildsystem () {
308 f.write('BB_SETSCENE_ENFORCE_WHITELIST = "%:* *:do_shared_workdir *:do_rm_work"\n\n') 308 f.write('BB_SETSCENE_ENFORCE_WHITELIST = "%:* *:do_shared_workdir *:do_rm_work"\n\n')
309 309
310 # Hide the config information from bitbake output (since it's fixed within the SDK) 310 # Hide the config information from bitbake output (since it's fixed within the SDK)
311 f.write('BUILDCFG_HEADER = ""\n') 311 f.write('BUILDCFG_HEADER = ""\n\n')
312
313 # Map gcc-dependent uninative sstate cache for installer usage
314 f.write('SSTATE_MIRRORS = "file://universal/(.*) file://universal-4.9/\\1\\nfile://universal-4.9/(.*) file://universal-4.8/\\1"\n\n')
312 315
313 # Allow additional config through sdk-extra.conf 316 # Allow additional config through sdk-extra.conf
314 fn = bb.cookerdata.findConfigFile('sdk-extra.conf', d) 317 fn = bb.cookerdata.findConfigFile('sdk-extra.conf', d)