summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/runqueue.py
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-07-01 13:22:23 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-03 17:00:57 +0100
commit4fd9ee4670293632cc0ca1e64b8833eb6014435d (patch)
treeb810d79dadcf181a6b798c9574822e95b4a32146 /bitbake/lib/bb/runqueue.py
parent97e19bf73b024bc691e56c315ec7eb378a8cf7dd (diff)
downloadpoky-4fd9ee4670293632cc0ca1e64b8833eb6014435d.tar.gz
bitbake: bitbake: Add --skip-setscene option
Adds an option to skip _setscene only if they would normally be executed, without ignoring sstate completely. Previously, '--no-setscene' would allow a build that completely ignored sstate and _setscene tasks, and '--setscene-only' would allow a build that only ran _setscene tasks, but there was no option do a build that would respect tasks previously restored from sstate and build everything else. Now one can run: bitbake --setscene-only IMAGE; bitbake --skip-setscene IMAGE which is functionally equivalent to: bitbake IMAGE The indented use is to allow a build to complete successfully in the presence of _setscene task failures by splitting apart the two phases e.g.: (bitbake -k --setscene-only IMAGE || true) && bitbake --skip-setscene IMAGE (Bitbake rev: 813ba5b7c13b573a0b813b628a819bdbf0627540) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r--bitbake/lib/bb/runqueue.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 58707db309..704e309b93 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2488,6 +2488,11 @@ class RunQueueExecuteScenequeue(RunQueueExecute):
2488 self.task_skip(task) 2488 self.task_skip(task)
2489 return True 2489 return True
2490 2490
2491 if self.cooker.configuration.skipsetscene:
2492 logger.debug(2, 'No setscene tasks should be executed. Skipping %s', task)
2493 self.task_failoutright(task)
2494 return True
2495
2491 startevent = sceneQueueTaskStarted(task, self.stats, self.rq) 2496 startevent = sceneQueueTaskStarted(task, self.stats, self.rq)
2492 bb.event.fire(startevent, self.cfgData) 2497 bb.event.fire(startevent, self.cfgData)
2493 2498