summaryrefslogtreecommitdiffstats
path: root/meta/classes/sstate.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r--meta/classes/sstate.bbclass21
1 files changed, 16 insertions, 5 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index 4a63d37d20..92c3a274f0 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -44,11 +44,12 @@ def sstate_init(name, d):
ss['lockfiles'] = []
return ss
-def sstate_state_fromvars(d):
- task = bb.data.getVar('BB_CURRENTTASK', d, True)
- if not task:
- bb.fatal("sstate code running without task context?!")
- task = task.replace("_setscene", "")
+def sstate_state_fromvars(d, task = None):
+ if task is None:
+ task = bb.data.getVar('BB_CURRENTTASK', d, True)
+ if not task:
+ bb.fatal("sstate code running without task context?!")
+ task = task.replace("_setscene", "")
name = bb.data.expand(bb.data.getVarFlag("do_" + task, 'sstate-name', d), d)
inputs = (bb.data.expand(bb.data.getVarFlag("do_" + task, 'sstate-inputdirs', d) or "", d)).split()
@@ -158,6 +159,16 @@ def sstate_installpkg(ss, d):
return True
+def sstate_clean_cachefile(ss, d):
+ sstatepkg = bb.data.getVar('SSTATE_PKG', d, True) + '_' + ss['name'] + ".tgz"
+ bb.note("Removing %s" % sstatepkg)
+ oe.path.remove(sstatepkg)
+
+def sstate_clean_cachefiles(d):
+ for task in (bb.data.getVar('SSTATETASKS', d, True) or "").split():
+ ss = sstate_state_fromvars(d, task[3:])
+ sstate_clean_cachefile(ss, d)
+
def sstate_clean_manifest(manifest, d):
import oe.path