aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/cookerdata.py
diff options
context:
space:
mode:
authorMatthew McClintock <msm-oss@mcclintock.net>2017-03-08 14:24:38 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-11 16:16:57 +0000
commit7c0fa6ba66cdb956b37d94055307cde857633df9 (patch)
treebd0642debd85f19fb256a116bd5be7c2065d12c5 /lib/bb/cookerdata.py
parente455e40ba309837903b9e2d5f1dff55cce1135de (diff)
downloadbitbake-contrib-7c0fa6ba66cdb956b37d94055307cde857633df9.tar.gz
runqueue: add option to run all tasks in specific build target
For example: $ bitbake core-image-minimal --runall unpack ... NOTE: Tasks Summary: Attempted 326 tasks of which 88 didn't need to be rerun and all succeeded. $ bitbake core-image-minimal --runall patch NOTE: Tasks Summary: Attempted 453 tasks of which 332 didn't need to be rerun and all succeeded. This can replace fetchall as well: $ bitbake core-image-minimal --runall fetch NOTE: Tasks Summary: Attempted 135 tasks of which 119 didn't need to be rerun and all succeeded. Signed-off-by: Matthew McClintock <msm-oss@mcclintock.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cookerdata.py')
-rw-r--r--lib/bb/cookerdata.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py
index 53f458786..722d86024 100644
--- a/lib/bb/cookerdata.py
+++ b/lib/bb/cookerdata.py
@@ -148,6 +148,7 @@ class CookerConfiguration(object):
self.writeeventlog = False
self.server_only = False
self.limited_deps = False
+ self.runall = None
self.env = {}