From f0dcf39d52185430422cb0c94c7fe99c12764acd Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Tue, 13 Jun 2017 14:22:00 +0300 Subject: wic: add 'wic cp' command Added empty 'wic cp' 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/lib/wic/engine.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'scripts/lib/wic/engine.py') diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py index 95c8d1cc22..f8f2844cf6 100644 --- a/scripts/lib/wic/engine.py +++ b/scripts/lib/wic/engine.py @@ -309,6 +309,13 @@ def wic_ls(args, native_sysroot): path = args.path.path or '/' print(disk.dir(args.path.part, path)) +def wic_cp(args, native_sysroot): + """ + Copy local file or directory to the vfat partition of + partitioned image. + """ + pass + def find_canned(scripts_path, file_name): """ Find a file either by its path or by name in the canned files dir. -- cgit 1.2.3-korg