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.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index c0ae38ab6d..bf59793db5 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -219,6 +219,9 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters):
219 parser.add_option("", "--no-setscene", help = "Do not run any setscene tasks. sstate will be ignored and everything needed, built.", 219 parser.add_option("", "--no-setscene", help = "Do not run any setscene tasks. sstate will be ignored and everything needed, built.",
220 action = "store_true", dest = "nosetscene", default = False) 220 action = "store_true", dest = "nosetscene", default = False)
221 221
222 parser.add_option("", "--setscene-only", help = "Only run setscene tasks, don't run any real tasks.",
223 action = "store_true", dest = "setsceneonly", default = False)
224
222 parser.add_option("", "--remote-server", help = "Connect to the specified server.", 225 parser.add_option("", "--remote-server", help = "Connect to the specified server.",
223 action = "store", dest = "remote_server", default = False) 226 action = "store", dest = "remote_server", default = False)
224 227