summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/main.py')
-rwxr-xr-xbitbake/lib/bb/main.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index 3071141b55..af2880f8d5 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -254,6 +254,11 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters):
254 help="Do not run any setscene tasks. sstate will be ignored and " 254 help="Do not run any setscene tasks. sstate will be ignored and "
255 "everything needed, built.") 255 "everything needed, built.")
256 256
257 parser.add_option("", "--skip-setscene", action="store_true",
258 dest="skipsetscene", default=False,
259 help="Skip setscene tasks if they would be executed. Tasks previously "
260 "restored from sstate will be kept, unlike --no-setscene")
261
257 parser.add_option("", "--setscene-only", action="store_true", 262 parser.add_option("", "--setscene-only", action="store_true",
258 dest="setsceneonly", default=False, 263 dest="setsceneonly", default=False,
259 help="Only run setscene tasks, don't run any real tasks.") 264 help="Only run setscene tasks, don't run any real tasks.")