diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-06-17 16:49:33 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 11:38:17 +0100 |
commit | 6b81c89878236b2ef8d8b8217f2e33286b49dab6 (patch) | |
tree | d77707c37110614d7e97614cb16d82ecd584c324 /scripts/lib/image/engine.py | |
parent | a64604d11f75973b4c2347fa2669da9889e44013 (diff) | |
download | openembedded-core-6b81c89878236b2ef8d8b8217f2e33286b49dab6.tar.gz openembedded-core-6b81c89878236b2ef8d8b8217f2e33286b49dab6.tar.bz2 openembedded-core-6b81c89878236b2ef8d8b8217f2e33286b49dab6.zip |
wic: removed unused command line option
Removed -i/--infile wic command line option.
Removed properties_file and properties arguments of
wic_create function.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Diffstat (limited to 'scripts/lib/image/engine.py')
-rw-r--r-- | scripts/lib/image/engine.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py index c568d695df..29099ee0e6 100644 --- a/scripts/lib/image/engine.py +++ b/scripts/lib/image/engine.py @@ -178,9 +178,8 @@ def list_source_plugins(): print " %s" % plugin -def wic_create(args, wks_file, rootfs_dir, bootimg_dir, kernel_dir, - native_sysroot, scripts_path, image_output_dir, debug, - properties_file, properties=None): +def wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir, + native_sysroot, scripts_path, image_output_dir, debug): """Create image wks_file - user-defined OE kickstart file @@ -190,8 +189,6 @@ def wic_create(args, wks_file, rootfs_dir, bootimg_dir, kernel_dir, native_sysroot - absolute path to the build's native sysroots dir scripts_path - absolute path to /scripts dir image_output_dir - dirname to create for image - properties_file - use values from this file if nonempty i.e no prompting - properties - use values from this string if nonempty i.e no prompting Normally, the values for the build artifacts values are determined by 'wic -e' from the output of the 'bitbake -e' command given an |