summaryrefslogtreecommitdiffstats
path: root/meta/classes/populate_sdk_ext.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/populate_sdk_ext.bbclass')
-rw-r--r--meta/classes/populate_sdk_ext.bbclass9
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index 317043d890..3a65c07a51 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -171,10 +171,9 @@ python copy_buildsystem () {
171 oe.copy_buildsystem.generate_locked_sigs(sigfile, d) 171 oe.copy_buildsystem.generate_locked_sigs(sigfile, d)
172 172
173 # Filter the locked signatures file to just the sstate tasks we are interested in 173 # Filter the locked signatures file to just the sstate tasks we are interested in
174 allowed_tasks = ['do_populate_lic', 'do_populate_sysroot', 'do_packagedata', 'do_package_write_ipk', 'do_package_write_rpm', 'do_package_write_deb', 'do_package_qa', 'do_deploy']
175 excluded_targets = d.getVar('SDK_TARGETS', True) 174 excluded_targets = d.getVar('SDK_TARGETS', True)
176 lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc' 175 lockedsigs_pruned = baseoutpath + '/conf/locked-sigs.inc'
177 oe.copy_buildsystem.prune_lockedsigs(allowed_tasks, 176 oe.copy_buildsystem.prune_lockedsigs([],
178 excluded_targets, 177 excluded_targets,
179 sigfile, 178 sigfile,
180 lockedsigs_pruned) 179 lockedsigs_pruned)
@@ -187,6 +186,12 @@ python copy_buildsystem () {
187 d.getVar('SSTATE_DIR', True), 186 d.getVar('SSTATE_DIR', True),
188 sstate_out, d, 187 sstate_out, d,
189 fixedlsbstring) 188 fixedlsbstring)
189 # We don't need sstate do_package files
190 for root, dirs, files in os.walk(sstate_out):
191 for name in files:
192 if name.endswith("_package.tgz"):
193 f = os.path.join(root, name)
194 os.remove(f)
190} 195}
191 196
192def extsdk_get_buildtools_filename(d): 197def extsdk_get_buildtools_filename(d):