summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-09 17:12:31 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-17 08:52:28 +0000
commit4754b1021ebdc8272b324bb8f2ffff03c8719233 (patch)
tree43684b927467b2f8a831baa0be175a54e94a2c63 /bitbake/lib/bb/runqueue.py
parent46fd76aa07bd431f0ba73bdafeb7bf5aa31cef25 (diff)
downloadpoky-4754b1021ebdc8272b324bb8f2ffff03c8719233.tar.gz
bitbake: siggen: Directly store datacaches reference
It is becomming clear the siggen needs access to our cache data but we can't always obtain it in the contexts we need to. Add it directly, meaning over time we should be able to simplify the APIs and stop convoluting new ones! (Bitbake rev: 6b213590ed0e77683cf7fbce6bbe9605ddecf3d3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 63cce8184f..991aa94f67 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -651,6 +651,8 @@ class RunQueueData:
651 # Nothing to do 651 # Nothing to do
652 return 0 652 return 0
653 653
654 bb.parse.siggen.setup_datacache(self.dataCaches)
655
654 self.init_progress_reporter.start() 656 self.init_progress_reporter.start()
655 self.init_progress_reporter.next_stage() 657 self.init_progress_reporter.next_stage()
656 658