From de9d7d14cd03e4dfc5812890a53c79b706b56537 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Mon, 16 Jan 2017 22:42:29 +0200 Subject: wic: fix getting path of native sysroot wic used STAGING_DIR_NATIVE variable as a path to native sysroot. This doesn't work with recipe specific sysroots as STAGING_DIR_NATIVE points to the native sysroot of the current recipe. Used RECIPE_SYSROOT_NATIVE variable of wic-tools recipe to fix the issue. Signed-off-by: Ed Bartosh --- scripts/wic | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'scripts/wic') diff --git a/scripts/wic b/scripts/wic index 1ad16665e7..f09dbc2e00 100755 --- a/scripts/wic +++ b/scripts/wic @@ -175,8 +175,7 @@ def wic_create_subcommand(args, usage_str): rootfs_dir = get_bitbake_var("IMAGE_ROOTFS", options.image_name) kernel_dir = get_bitbake_var("DEPLOY_DIR_IMAGE", options.image_name) - native_sysroot = get_bitbake_var("STAGING_DIR_NATIVE", - options.image_name) + native_sysroot = os.path.join(get_bitbake_var("RECIPE_SYSROOT_NATIVE", "wic-tools")) else: if options.build_rootfs: print("Image name is not specified, exiting. (Use -e/--image-name to specify it)\n") -- cgit 1.2.3-korg