summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/upgrade.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/devtool/upgrade.py')
-rw-r--r--scripts/lib/devtool/upgrade.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py
index e2be38e7af..0e53c8286e 100644
--- a/scripts/lib/devtool/upgrade.py
+++ b/scripts/lib/devtool/upgrade.py
@@ -339,7 +339,8 @@ def upgrade(args, config, basepath, workspace):
339def register_commands(subparsers, context): 339def register_commands(subparsers, context):
340 """Register devtool subcommands from this plugin""" 340 """Register devtool subcommands from this plugin"""
341 parser_upgrade = subparsers.add_parser('upgrade', help='Upgrade an existing recipe', 341 parser_upgrade = subparsers.add_parser('upgrade', help='Upgrade an existing recipe',
342 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).') 342 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).',
343 group='starting')
343 parser_upgrade.add_argument('recipename', help='Name of recipe to upgrade (just name - no version, path or extension)') 344 parser_upgrade.add_argument('recipename', help='Name of recipe to upgrade (just name - no version, path or extension)')
344 parser_upgrade.add_argument('srctree', help='Path to where to extract the source tree') 345 parser_upgrade.add_argument('srctree', help='Path to where to extract the source tree')
345 parser_upgrade.add_argument('--version', '-V', help='Version to upgrade to (PV)') 346 parser_upgrade.add_argument('--version', '-V', help='Version to upgrade to (PV)')