From b42aafb97d6ff7b3f415e5d2a283e5088c36a612 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Tue, 2 Jan 2018 11:20:26 +0100 Subject: [PATCH] shell: Drop default from --target Forgotten by 49cb9b7a7ba9: The default is now set in get_bitbake_targets. This fixes spurious overwrites of the target defined in the config file. Signed-off-by: Jan Kiszka --- kas/shell.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kas/shell.py b/kas/shell.py index 27a0db2..af580bf 100644 --- a/kas/shell.py +++ b/kas/shell.py @@ -53,8 +53,7 @@ class Shell: help='Config file') sh_prs.add_argument('--target', action='append', - help='Select target to build', - default='core-image-minimal') + help='Select target to build') sh_prs.add_argument('--skip', help='Skip build steps', default=[])