From 3571e3e77f12f01683ff613cf8bc4af1180b075e Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Thu, 2 Feb 2017 15:32:59 +0200 Subject: wic: get rid of image_output_dir variable Used options.outdir instead of image_output_dir. There is no sense to use extra variable for this. (From OE-Core rev: c6013dcb158a84d48cc2677f1509681cf9e0a3cb) Signed-off-by: Ed Bartosh Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- scripts/wic | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/wic b/scripts/wic index 33355eed07..17e82315e2 100755 --- a/scripts/wic +++ b/scripts/wic @@ -203,10 +203,6 @@ def wic_create_subcommand(args, usage_str): "kickstart (.wks) filename)\n" % args[0]) sys.exit(1) - image_output_dir = "" - if options.outdir: - image_output_dir = options.outdir - if not options.image_name: rootfs_dir = '' if 'ROOTFS_DIR' in options.rootfs_dir: @@ -254,7 +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, image_output_dir, + native_sysroot, scripts_path, options.outdir, options.compressor, options.bmap, options.debug) -- cgit 1.2.3-korg