summaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/wic')
-rw-r--r--scripts/lib/wic/engine.py7
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):
340 disk = Disk(args.dest.image, native_sysroot) 340 disk = Disk(args.dest.image, native_sysroot)
341 disk.copy(args.src, args.dest.part, args.dest.path) 341 disk.copy(args.src, args.dest.part, args.dest.path)
342 342
343def wic_rm(args, native_sysroot):
344 """
345 Remove files or directories from the vfat partition of
346 partitioned image.
347 """
348 pass
349
343def find_canned(scripts_path, file_name): 350def find_canned(scripts_path, file_name):
344 """ 351 """
345 Find a file either by its path or by name in the canned files dir. 352 Find a file either by its path or by name in the canned files dir.