diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-06-13 14:22:11 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-14 10:18:21 +0100 |
commit | f8e42c13609c482359fbdb225fb16a45101ae9ae (patch) | |
tree | f4d612c9b375a5b566a409c9bc3d675d21046354 /scripts/lib | |
parent | b6894538b2a426762a07c0e7b014a04f4e00266d (diff) | |
download | openembedded-core-f8e42c13609c482359fbdb225fb16a45101ae9ae.tar.gz openembedded-core-f8e42c13609c482359fbdb225fb16a45101ae9ae.tar.bz2 openembedded-core-f8e42c13609c482359fbdb225fb16a45101ae9ae.zip |
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 <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/wic/engine.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py index a48c4adafb..9a8055c05c 100644 --- a/scripts/lib/wic/engine.py +++ b/scripts/lib/wic/engine.py @@ -340,6 +340,13 @@ def wic_cp(args, native_sysroot): disk = Disk(args.dest.image, native_sysroot) disk.copy(args.src, args.dest.part, args.dest.path) +def wic_rm(args, native_sysroot): + """ + Remove files or directories from 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. |