summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/populate_sdk_ext.bbclass11
1 files changed, 9 insertions, 2 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index 4ad190b2c0..d1977a760a 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -209,8 +209,15 @@ python copy_buildsystem () {
209 # Bypass the default connectivity check if any 209 # Bypass the default connectivity check if any
210 f.write('CONNECTIVITY_CHECK_URIS = ""\n\n') 210 f.write('CONNECTIVITY_CHECK_URIS = ""\n\n')
211 211
212 # Ensure locked sstate cache objects are re-used without error 212 # This warning will come out if reverse dependencies for a task
213 f.write('SIGGEN_LOCKEDSIGS_CHECK_LEVEL = "none"\n\n') 213 # don't have sstate as well as the task itself. We already know
214 # this will be the case for the extensible sdk, so turn off the
215 # warning.
216 f.write('SIGGEN_LOCKEDSIGS_SSTATE_EXISTS_CHECK = "none"\n\n')
217
218 # Error if the sigs in the locked-signature file don't match
219 # the sig computed from the metadata.
220 f.write('SIGGEN_LOCKEDSIGS_TASKSIG_CHECK = "error"\n\n')
214 221
215 # Hide the config information from bitbake output (since it's fixed within the SDK) 222 # Hide the config information from bitbake output (since it's fixed within the SDK)
216 f.write('BUILDCFG_HEADER = ""\n') 223 f.write('BUILDCFG_HEADER = ""\n')