From f8e42c13609c482359fbdb225fb16a45101ae9ae Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Tue, 13 Jun 2017 14:22:11 +0300 Subject: wic: add 'wic rm' command Added empty 'wic rm' command that does nothing. The functionality will be added by the next commits. [YOCTO #11283] Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/wic | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'scripts/wic') diff --git a/scripts/wic b/scripts/wic index fc192ec852..da14f4714a 100755 --- a/scripts/wic +++ b/scripts/wic @@ -248,6 +248,13 @@ def wic_cp_subcommand(args, usage_str): """ engine.wic_cp(args, args.native_sysroot) +def wic_rm_subcommand(args, usage_str): + """ + Command-line handling for removing files/dirs from images. + The real work is done by engine.wic_rm() + """ + engine.wic_rm(args, args.native_sysroot) + def wic_help_subcommand(args, usage_str): """ Command-line handling for help subcommand to keep the current @@ -286,6 +293,9 @@ helptopics = { "cp": [wic_help_topic_subcommand, wic_help_topic_usage, hlp.wic_cp_help], + "rm": [wic_help_topic_subcommand, + wic_help_topic_usage, + hlp.wic_rm_help], "list": [wic_help_topic_subcommand, wic_help_topic_usage, hlp.wic_list_help] @@ -409,6 +419,10 @@ subcommands = { hlp.wic_cp_usage, hlp.wic_cp_help, wic_init_parser_cp], + "rm": [wic_rm_subcommand, + hlp.wic_rm_usage, + hlp.wic_rm_help, + wic_init_parser_rm], "help": [wic_help_subcommand, wic_help_topic_usage, hlp.wic_help_help, -- cgit 1.2.3-korg