summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2019-07-04 12:12:37 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-18 13:43:40 +0100
commitcf286dff653eed542bf347ca46234c224944d5b0 (patch)
treed3dd4f01fc99d3d29db5f00d326e4989c7635d2f /lib/bb/cache.py
parent75292fdec5d9c0b5b3c554c4b7474a63656f7e12 (diff)
downloadbitbake-cf286dff653eed542bf347ca46234c224944d5b0.tar.gz
cache: Create a symlink for current cachefile
So that people or other tools can easily know which one is being used, just like what we did for run.do_task and log.do_task, otherwise, we have no way to know it. I usually use "ls -t", but it isn't reliable since the one which is being used may not the latest one. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cache.py')
-rw-r--r--lib/bb/cache.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index bec8ef775..ab18dd5ea 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -396,6 +396,15 @@ class Cache(NoCache):
else:
logger.debug(1, "Cache file %s not found, building..." % self.cachefile)
+ # We don't use the symlink, its just for debugging convinience
+ symlink = os.path.join(self.cachedir, "bb_cache.dat")
+ if os.path.exists(symlink):
+ bb.utils.remove(symlink)
+ try:
+ os.symlink(os.path.basename(self.cachefile), symlink)
+ except OSError:
+ pass
+
def load_cachefile(self):
cachesize = 0
previous_progress = 0