diff options
Diffstat (limited to 'scripts/lib/devtool/upgrade.py')
-rw-r--r-- | scripts/lib/devtool/upgrade.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py index d7fd408a2e..fbffae06fe 100644 --- a/scripts/lib/devtool/upgrade.py +++ b/scripts/lib/devtool/upgrade.py | |||
@@ -361,8 +361,8 @@ def upgrade(args, config, basepath, workspace): | |||
361 | def register_commands(subparsers, context): | 361 | def register_commands(subparsers, context): |
362 | """Register devtool subcommands from this plugin""" | 362 | """Register devtool subcommands from this plugin""" |
363 | parser_upgrade = subparsers.add_parser('upgrade', help='Upgrade an existing recipe', | 363 | parser_upgrade = subparsers.add_parser('upgrade', help='Upgrade an existing recipe', |
364 | description='Upgrades an existing recipe to a new upstream version') | 364 | description='Upgrades an existing recipe to a new upstream version. Puts the upgraded recipe file into the workspace along with any associated files, and extracts the source tree to a specified location (in case patches need rebasing or adding to as a result of the upgrade).') |
365 | parser_upgrade.add_argument('recipename', help='Name for recipe to extract the source for') | 365 | parser_upgrade.add_argument('recipename', help='Name of recipe to upgrade (just name - no version, path or extension)') |
366 | parser_upgrade.add_argument('srctree', help='Path to where to extract the source tree') | 366 | parser_upgrade.add_argument('srctree', help='Path to where to extract the source tree') |
367 | parser_upgrade.add_argument('--version', '-V', help='Version to upgrade to (PV)') | 367 | parser_upgrade.add_argument('--version', '-V', help='Version to upgrade to (PV)') |
368 | parser_upgrade.add_argument('--srcrev', '-S', help='Source revision to upgrade to (if fetching from an SCM such as git)') | 368 | parser_upgrade.add_argument('--srcrev', '-S', help='Source revision to upgrade to (if fetching from an SCM such as git)') |