diff options
Diffstat (limited to 'bitbake/lib/bb/main.py')
-rwxr-xr-x | bitbake/lib/bb/main.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py index 7711b290de..f4474e410f 100755 --- a/bitbake/lib/bb/main.py +++ b/bitbake/lib/bb/main.py | |||
@@ -292,8 +292,12 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters): | |||
292 | help="Writes the event log of the build to a bitbake event json file. " | 292 | help="Writes the event log of the build to a bitbake event json file. " |
293 | "Use '' (empty string) to assign the name automatically.") | 293 | "Use '' (empty string) to assign the name automatically.") |
294 | 294 | ||
295 | parser.add_option("", "--runall", action="store", dest="runall", | 295 | parser.add_option("", "--runall", action="append", dest="runall", |
296 | help="Run the specified task for all build targets and their dependencies.") | 296 | help="Run the specified task for any recipe in the taskgraph of the specified target (even if it wouldn't otherwise have run).") |
297 | |||
298 | parser.add_option("", "--runonly", action="append", dest="runonly", | ||
299 | help="Run only the specified task within the taskgraph of the specified targets (and any task dependencies those tasks may have).") | ||
300 | |||
297 | 301 | ||
298 | options, targets = parser.parse_args(argv) | 302 | options, targets = parser.parse_args(argv) |
299 | 303 | ||