diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-11-23 13:34:20 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-01 21:32:04 +0000 |
commit | 0b850cb231231371b496ae5ee6f7571c3de2f448 (patch) | |
tree | 3b084d24611dccee0ff173254646c1e0269845f0 /scripts/devtool | |
parent | 5001f23ecc5f380938cee8d7fcce053ea482d928 (diff) | |
download | poky-0b850cb231231371b496ae5ee6f7571c3de2f448.tar.gz |
devtool: clarify help text
* Make some minor clarifications to help text
* Drop ArgumentDefaultsHelpFormatter and just put the defaults in the
text itself where needed (because otherwise you get defaults shown for
store_true options which is somewhat confusing).
(From OE-Core rev: a90ffea30c4578fd6acda2c5945b816ad33b13f5)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/devtool')
-rwxr-xr-x | scripts/devtool | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/devtool b/scripts/devtool index 1fcb42c134..9d3287c6d3 100755 --- a/scripts/devtool +++ b/scripts/devtool | |||
@@ -258,7 +258,7 @@ def main(): | |||
258 | 258 | ||
259 | if not context.fixed_setup: | 259 | if not context.fixed_setup: |
260 | parser_create_workspace = subparsers.add_parser('create-workspace', | 260 | parser_create_workspace = subparsers.add_parser('create-workspace', |
261 | help='Set up a workspace', | 261 | help='Set up workspace in an alternative location', |
262 | description='Sets up a new workspace. NOTE: other devtool subcommands will create a workspace automatically as needed, so you only need to use %(prog)s if you want to specify where the workspace should be located.') | 262 | description='Sets up a new workspace. NOTE: other devtool subcommands will create a workspace automatically as needed, so you only need to use %(prog)s if you want to specify where the workspace should be located.') |
263 | parser_create_workspace.add_argument('layerpath', nargs='?', help='Path in which the workspace layer should be created') | 263 | parser_create_workspace.add_argument('layerpath', nargs='?', help='Path in which the workspace layer should be created') |
264 | parser_create_workspace.add_argument('--create-only', action="store_true", help='Only create the workspace layer, do not alter configuration') | 264 | parser_create_workspace.add_argument('--create-only', action="store_true", help='Only create the workspace layer, do not alter configuration') |