summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/lib/image/engine.py4
-rwxr-xr-xscripts/wic2
2 files changed, 4 insertions, 2 deletions
diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py
index 29099ee0e6..047c40d908 100644
--- a/scripts/lib/image/engine.py
+++ b/scripts/lib/image/engine.py
@@ -179,7 +179,8 @@ def list_source_plugins():
179 179
180 180
181def wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir, 181def wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir,
182 native_sysroot, scripts_path, image_output_dir, debug): 182 native_sysroot, scripts_path, image_output_dir,
183 compressor, debug):
183 """Create image 184 """Create image
184 185
185 wks_file - user-defined OE kickstart file 186 wks_file - user-defined OE kickstart file
@@ -189,6 +190,7 @@ def wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir,
189 native_sysroot - absolute path to the build's native sysroots dir 190 native_sysroot - absolute path to the build's native sysroots dir
190 scripts_path - absolute path to /scripts dir 191 scripts_path - absolute path to /scripts dir
191 image_output_dir - dirname to create for image 192 image_output_dir - dirname to create for image
193 compressor - compressor utility to compress the image
192 194
193 Normally, the values for the build artifacts values are determined 195 Normally, the values for the build artifacts values are determined
194 by 'wic -e' from the output of the 'bitbake -e' command given an 196 by 'wic -e' from the output of the 'bitbake -e' command given an
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):