From d7f69e6f0932a927b6ce289fb47ba575d7aaa1c8 Mon Sep 17 00:00:00 2001 From: Maciej Borzecki Date: Mon, 22 Sep 2014 13:35:16 +0200 Subject: wic: set bootimg_dir when using image-name artifacts Running wic with -e to use artifacts from a named image, bootimg_dir was always passed as empty string to partition source plugins. The patch sets bootimg_dir to current value of DEPLOY_DIR_IMAGE, as bootloader artifacts end up in that location as well. Signed-off-by: Maciej Borzecki Signed-off-by: Maciek Borzecki Signed-off-by: Richard Purdie --- scripts/lib/image/engine.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'scripts/lib/image') diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py index f1df8b4db8..3813fec609 100644 --- a/scripts/lib/image/engine.py +++ b/scripts/lib/image/engine.py @@ -67,7 +67,8 @@ def find_artifacts(image_name): """ bitbake_env_lines = get_bitbake_env_lines() - rootfs_dir = kernel_dir = hdddir = staging_data_dir = native_sysroot = "" + rootfs_dir = kernel_dir = bootimg_dir = "" + hdddir = staging_data_dir = native_sysroot = "" for line in bitbake_env_lines.split('\n'): if (get_line_val(line, "IMAGE_ROOTFS")): @@ -85,8 +86,12 @@ def find_artifacts(image_name): if (get_line_val(line, "STAGING_DIR_NATIVE")): native_sysroot = get_line_val(line, "STAGING_DIR_NATIVE") continue + if (get_line_val(line, "DEPLOY_DIR_IMAGE")): + bootimg_dir = get_line_val(line, "DEPLOY_DIR_IMAGE") + continue - return (rootfs_dir, kernel_dir, hdddir, staging_data_dir, native_sysroot) + return (rootfs_dir, kernel_dir, bootimg_dir, hdddir, staging_data_dir, \ + native_sysroot) CANNED_IMAGE_DIR = "lib/image/canned-wks" # relative to scripts -- cgit v1.2.3