diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index c104c19f17..a7916b29bd 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py @@ -44,6 +44,10 @@ class SignatureGenerator(object): def get_taskhash(self, fn, task, deps, dataCache): return "0" + def writeout_file_checksum_cache(self): + """Write/update the file checksum cache onto disk""" + return + def set_taskdata(self, hashes, deps, checksum): return @@ -215,6 +219,11 @@ class SignatureGeneratorBasic(SignatureGenerator): #d.setVar("BB_TASKHASH_task-%s" % task, taskhash[task]) return h + def writeout_file_checksum_cache(self): + """Write/update the file checksum cache onto disk""" + bb.fetch2.fetcher_parse_save() + bb.fetch2.fetcher_parse_done() + def dump_sigtask(self, fn, task, stampbase, runtime): k = fn + "." + task if runtime == "customfile":