summaryrefslogtreecommitdiffstats
path: root/scripts/wic
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-06-22 14:58:19 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-27 22:42:49 +0100
commit40349f132583b5a1a4b2c3876f103616b7aee28d (patch)
treea8cf43bd41f182136382cfd893ddf08711e43902 /scripts/wic
parent13427e1598a73e26fdd7af7f550f76b5d3a03777 (diff)
downloadpoky-40349f132583b5a1a4b2c3876f103616b7aee28d.tar.gz
wic: Add new argument to wic_create function
Added 'compressor' argument to wic_create to pass a name of compressor utility to the wic engine. (From OE-Core rev: 33d38aefb06f8849b46c5f9f6c1db73b4dccd985) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/wic')
-rwxr-xr-xscripts/wic2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/wic b/scripts/wic
index 8869fba048..f9be972bad 100755
--- a/scripts/wic
+++ b/scripts/wic
@@ -228,7 +228,7 @@ def wic_create_subcommand(args, usage_str):
228 print "Creating image(s)...\n" 228 print "Creating image(s)...\n"
229 engine.wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir, 229 engine.wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir,
230 native_sysroot, scripts_path, image_output_dir, 230 native_sysroot, scripts_path, image_output_dir,
231 options.debug) 231 options.compressor, options.debug)
232 232
233 233
234def wic_list_subcommand(args, usage_str): 234def wic_list_subcommand(args, usage_str):