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:29 +0100 |
commit | 746351100ef860d3438e93683dc2ed4ba8d213e8 (patch) | |
tree | 7e9192b1231a40c56e67bf3a95a2664ec3abe261 /scripts/lib/wic/engine.py | |
parent | 7213625a7d035b6b1627aa96e94186ee6c2c531f (diff) | |
download | poky-746351100ef860d3438e93683dc2ed4ba8d213e8.tar.gz |
wic: add 'wic ls' command
Added empty 'wic ls' command that does nothing.
The functionality will be added by the next commits.
(From OE-Core rev: ba4613469cc2c3d3433be2e2f520f4fff6b3b333)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/engine.py')
-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): | |||
225 | 225 | ||
226 | return False | 226 | return False |
227 | 227 | ||
228 | def wic_ls(args, native_sysroot): | ||
229 | """List contents of partitioned image or vfat partition.""" | ||
230 | pass | ||
231 | |||
228 | def find_canned(scripts_path, file_name): | 232 | def find_canned(scripts_path, file_name): |
229 | """ | 233 | """ |
230 | Find a file either by its path or by name in the canned files dir. | 234 | Find a file either by its path or by name in the canned files dir. |