mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 12:32:15 +02:00
bitbake: runqueue: Wait for covered tasks to complete before trying setscene
If tasks are in the covered list of tasks for a given setscene task, it needs to wait for those to complete before we can start. (Bitbake rev: fdee640c26750b852eb68f5c80437377aa300ed8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1920,6 +1920,10 @@ class RunQueueExecute:
|
||||
if nexttask in self.sq_deferred:
|
||||
del self.sq_deferred[nexttask]
|
||||
return True
|
||||
# If covered tasks are running, need to wait for them to complete
|
||||
for t in self.sqdata.sq_covered_tasks[nexttask]:
|
||||
if t in self.runq_running and t not in self.runq_complete:
|
||||
continue
|
||||
if nexttask in self.sq_deferred:
|
||||
if self.sq_deferred[nexttask] not in self.runq_complete:
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user