diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-12-22 17:03:05 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-28 09:25:13 +0000 |
commit | 6acbdc9cf190c4dd464791885666e0ba1459b8dd (patch) | |
tree | 500575ccf91605287626d71d424de44d603f454c /scripts | |
parent | 316b57b62e2607e4ffd20377fec3276594b802b4 (diff) | |
download | poky-6acbdc9cf190c4dd464791885666e0ba1459b8dd.tar.gz |
devtool: add: tweak help text
Add a few clarifying words.
(From OE-Core rev: 2103fa9dc7faf2189c8b426b87fb9d421a9983ac)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/devtool/standard.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index c11de9d35d..57175a449a 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -1181,7 +1181,7 @@ def edit_recipe(args, config, basepath, workspace): | |||
1181 | def register_commands(subparsers, context): | 1181 | def register_commands(subparsers, context): |
1182 | """Register devtool subcommands from this plugin""" | 1182 | """Register devtool subcommands from this plugin""" |
1183 | parser_add = subparsers.add_parser('add', help='Add a new recipe', | 1183 | parser_add = subparsers.add_parser('add', help='Add a new recipe', |
1184 | description='Adds a new recipe to the workspace to build a specified source tree') | 1184 | description='Adds a new recipe to the workspace to build a specified source tree. Can optionally fetch a remote URI and unpack it to create the source tree.') |
1185 | parser_add.add_argument('recipename', help='Name for new recipe to add (just name - no version, path or extension)') | 1185 | parser_add.add_argument('recipename', help='Name for new recipe to add (just name - no version, path or extension)') |
1186 | parser_add.add_argument('srctree', help='Path to external source tree') | 1186 | parser_add.add_argument('srctree', help='Path to external source tree') |
1187 | group = parser_add.add_mutually_exclusive_group() | 1187 | group = parser_add.add_mutually_exclusive_group() |
@@ -1190,7 +1190,7 @@ def register_commands(subparsers, context): | |||
1190 | parser_add.add_argument('--fetch', '-f', help='Fetch the specified URI and extract it to create the source tree', metavar='URI') | 1190 | parser_add.add_argument('--fetch', '-f', help='Fetch the specified URI and extract it to create the source tree', metavar='URI') |
1191 | parser_add.add_argument('--version', '-V', help='Version to use within recipe (PV)') | 1191 | parser_add.add_argument('--version', '-V', help='Version to use within recipe (PV)') |
1192 | parser_add.add_argument('--no-git', '-g', help='If -f/--fetch is specified, do not set up source tree as a git repository', action="store_true") | 1192 | parser_add.add_argument('--no-git', '-g', help='If -f/--fetch is specified, do not set up source tree as a git repository', action="store_true") |
1193 | parser_add.add_argument('--binary', '-b', help='Treat the source tree as something that should be installed verbatim (no compilation, same directory structure)', action='store_true') | 1193 | parser_add.add_argument('--binary', '-b', help='Treat the source tree as something that should be installed verbatim (no compilation, same directory structure). Useful with binary packages e.g. RPMs.', action='store_true') |
1194 | parser_add.set_defaults(func=add) | 1194 | parser_add.set_defaults(func=add) |
1195 | 1195 | ||
1196 | parser_modify = subparsers.add_parser('modify', help='Modify the source for an existing recipe', | 1196 | parser_modify = subparsers.add_parser('modify', help='Modify the source for an existing recipe', |