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.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index 1c87a02daa..92d8dc0293 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -136,10 +136,6 @@ def create_bitbake_parser():
136 help="Execute the specified task (default is 'build') for these target " 136 help="Execute the specified task (default is 'build') for these target "
137 "recipes (.bb files).") 137 "recipes (.bb files).")
138 138
139 general_group.add_argument("-b", "--buildfile",
140 help="Execute tasks from a specific .bb recipe directly. WARNING: Does "
141 "not handle any dependencies from other recipes.")
142
143 general_group.add_argument("-s", "--show-versions", action="store_true", 139 general_group.add_argument("-s", "--show-versions", action="store_true",
144 help="Show current and preferred versions of all recipes.") 140 help="Show current and preferred versions of all recipes.")
145 141
@@ -227,6 +223,9 @@ def create_bitbake_parser():
227 help="Set the exit code depending on whether upstream floating " 223 help="Set the exit code depending on whether upstream floating "
228 "revisions have changed or not.") 224 "revisions have changed or not.")
229 225
226 exec_group.add_argument("-b", "--buildfile",
227 help="Execute tasks from a specific .bb recipe directly. WARNING: Does "
228 "not handle any dependencies from other recipes.")
230 229
231 logging_group.add_argument("-D", "--debug", action="count", default=0, 230 logging_group.add_argument("-D", "--debug", action="count", default=0,
232 help="Increase the debug level. You can specify this " 231 help="Increase the debug level. You can specify this "