From e8b54b0363cc180d16191bf1d9d476f8ed21fa5d Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Fri, 19 Feb 2016 14:57:02 +0200 Subject: Move file checksum cache out of SignatureGenerator Just utilize the checksum cache in bb.fetch2 as it is not used for anything else. Signed-off-by: Markus Lehtonen --- lib/bb/fetch2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/bb/fetch2') diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py index 6ef0c6fe7a..7e246555d1 100644 --- a/lib/bb/fetch2/__init__.py +++ b/lib/bb/fetch2/__init__.py @@ -510,7 +510,7 @@ def fetcher_init(d): else: raise FetchError("Invalid SRCREV cache policy of: %s" % srcrev_policy) - _checksum_cache.init_cache(d) + _checksum_cache.init_cache(d, d.getVar("BB_HASH_CHECKSUM_CACHE_FILE", True)) for m in methods: if hasattr(m, "init"): -- cgit 1.2.3-korg