1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-03 13:49:49 +00:00

bitbake: bb/cache: drop some unused arguments

Drop unused 'd' argument from the cache save methods, simplifying the
API.

(Bitbake rev: 81bc1f20662c39ee8db1da45b1e8c7eb64abacf3)

Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Markus Lehtonen
2016-01-26 15:34:27 +02:00
committed by Richard Purdie
parent 5a87d8c477
commit 97617fd675
4 changed files with 15 additions and 15 deletions
+5 -5
View File
@@ -515,13 +515,13 @@ def fetcher_init(d):
if hasattr(m, "init"):
m.init(d)
def fetcher_parse_save(d):
_checksum_cache.save_extras(d)
def fetcher_parse_save():
_checksum_cache.save_extras()
def fetcher_parse_done(d):
_checksum_cache.save_merge(d)
def fetcher_parse_done():
_checksum_cache.save_merge()
def fetcher_compare_revisions(d):
def fetcher_compare_revisions():
"""
Compare the revisions in the persistant cache with current values and
return true/false on whether they've changed.