summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-06-13 16:43:40 +1200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-15 08:35:01 +0100
commit5c1b9fd54158bea702b6a0354948b00089975bda (patch)
treec7025a05140375127845447f631e8e324fe42882 /scripts
parentdd6d61ae5d266f6093dd722611248328991441a6 (diff)
downloadpoky-5c1b9fd54158bea702b6a0354948b00089975bda.tar.gz
devtool: reset: allow specifying multiple recipes
Allow specifying more than one recipe on the devtool reset command line. Also tweak the help text slightly. (From OE-Core rev: ad92ed8e4f7f48a3d212962531d596b36f6b284f) 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.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index a2516d66ac..ed49a936b9 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -1304,14 +1304,15 @@ def reset(args, config, basepath, workspace):
1304 if args.all: 1304 if args.all:
1305 raise DevtoolError("Recipe cannot be specified if -a/--all is used") 1305 raise DevtoolError("Recipe cannot be specified if -a/--all is used")
1306 else: 1306 else:
1307 check_workspace_recipe(workspace, args.recipename, checksrc=False) 1307 for recipe in args.recipename:
1308 check_workspace_recipe(workspace, recipe, checksrc=False)
1308 elif not args.all: 1309 elif not args.all:
1309 raise DevtoolError("Recipe must be specified, or specify -a/--all to " 1310 raise DevtoolError("Recipe must be specified, or specify -a/--all to "
1310 "reset all recipes") 1311 "reset all recipes")
1311 if args.all: 1312 if args.all:
1312 recipes = list(workspace.keys()) 1313 recipes = list(workspace.keys())
1313 else: 1314 else:
1314 recipes = [args.recipename] 1315 recipes = args.recipename
1315 1316
1316 if recipes and not args.no_clean: 1317 if recipes and not args.no_clean:
1317 if len(recipes) == 1: 1318 if len(recipes) == 1:
@@ -1449,9 +1450,9 @@ def register_commands(subparsers, context):
1449 parser_status.set_defaults(func=status) 1450 parser_status.set_defaults(func=status)
1450 1451
1451 parser_reset = subparsers.add_parser('reset', help='Remove a recipe from your workspace', 1452 parser_reset = subparsers.add_parser('reset', help='Remove a recipe from your workspace',
1452 description='Removes the specified recipe from your workspace (resetting its state)', 1453 description='Removes the specified recipe(s) from your workspace (resetting its state back to that defined by the metadata).',
1453 group='working', order=-100) 1454 group='working', order=-100)
1454 parser_reset.add_argument('recipename', nargs='?', help='Recipe to reset') 1455 parser_reset.add_argument('recipename', nargs='*', help='Recipe to reset')
1455 parser_reset.add_argument('--all', '-a', action="store_true", help='Reset all recipes (clear workspace)') 1456 parser_reset.add_argument('--all', '-a', action="store_true", help='Reset all recipes (clear workspace)')
1456 parser_reset.add_argument('--no-clean', '-n', action="store_true", help='Don\'t clean the sysroot to remove recipe output') 1457 parser_reset.add_argument('--no-clean', '-n', action="store_true", help='Don\'t clean the sysroot to remove recipe output')
1457 parser_reset.set_defaults(func=reset) 1458 parser_reset.set_defaults(func=reset)