diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-06-13 14:21:55 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-14 10:18:20 +0100 |
commit | ba4613469cc2c3d3433be2e2f520f4fff6b3b333 (patch) | |
tree | 451ec82445b435e18f76ec3eef6ccdca898ee548 /scripts/lib | |
parent | 5152f993777550e5e8a420db4d1f3c4370cd1d33 (diff) | |
download | openembedded-core-ba4613469cc2c3d3433be2e2f520f4fff6b3b333.tar.gz openembedded-core-ba4613469cc2c3d3433be2e2f520f4fff6b3b333.tar.bz2 openembedded-core-ba4613469cc2c3d3433be2e2f520f4fff6b3b333.zip |
wic: add 'wic ls' command
Added empty 'wic ls' command that does nothing.
The functionality will be added by the next commits.
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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py index 647358287f..e58beb7dce 100644 --- a/scripts/lib/wic/engine.py +++ b/scripts/lib/wic/engine.py @@ -225,6 +225,10 @@ def wic_list(args, scripts_path): return False +def wic_ls(args, native_sysroot): + """List contents of partitioned image or vfat partition.""" + pass + def find_canned(scripts_path, file_name): """ Find a file either by its path or by name in the canned files dir. |