diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-02-03 22:26:06 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:20:22 +0000 |
commit | 1e28d512341ce470c7afb256a01e597ab87170ca (patch) | |
tree | 06197ccceb8f7793d4ab4b906793b4d95d6c58aa /scripts/wic | |
parent | 798edc3f9931bae4481e09287ac00002ad30654f (diff) | |
download | openembedded-core-1e28d512341ce470c7afb256a01e597ab87170ca.tar.gz openembedded-core-1e28d512341ce470c7afb256a01e597ab87170ca.tar.bz2 openembedded-core-1e28d512341ce470c7afb256a01e597ab87170ca.zip |
wic: flatten imager class hierarchy
wic code is hard to follow due to deep and twiggy class
inheritance tree.
Flatten imager tree:
wic -> wic_create -> Creator -> DirectPlugin -> DirectImageCreator
to
wic -> wic_create -> DirectPlugin
by
removing Creator class and creator module
merging DirectImageCreator into DirectPlugin
Changed APIs to use the same parameters names.
Passed parsed command line options as an object down the stack.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/wic')
-rwxr-xr-x | scripts/wic | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/wic b/scripts/wic index 17e82315e2..8a959a01af 100755 --- a/scripts/wic +++ b/scripts/wic @@ -250,8 +250,7 @@ def wic_create_subcommand(args, usage_str): print("Creating image(s)...\n") engine.wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir, - native_sysroot, scripts_path, options.outdir, - options.compressor, options.bmap, options.debug) + native_sysroot, scripts_path, options) def wic_list_subcommand(args, usage_str): |