aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2020-06-19 13:41:32 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-06-19 23:18:09 +0100
commit1082188ce633ec6891c961d726f584b3f1259941 (patch)
treee8eec065c9b4f4575d4da3dcb4dbd9735c755765
parent7689fa781646039524a655295a884e525ad8732c (diff)
downloadbitbake-1082188ce633ec6891c961d726f584b3f1259941.tar.gz
cache: Bump cache version
The layout of the cache data hasn't changed, but the cache has now been split into different files for multiconfig. If a user pulls in these changes, it's possible that their base cache will still contain the combined multiconfig cache entries, which are now unexpected and generate errors like: Unexpected multiconfig: foo Bumping the version fixes this since the old cache data won't be considered valid anymore. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index c1e08511b..b819a0c2d 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -26,7 +26,7 @@ import re
logger = logging.getLogger("BitBake.Cache")
-__cache_version__ = "152"
+__cache_version__ = "153"
def getCacheFile(path, filename, mc, data_hash):
mcspec = ''