From 243ccd6b8b389231f6c4a8e251c2bd6b2cf6eaad Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Tue, 21 Feb 2017 17:09:10 +0200 Subject: wic: add WKS_FILE_DEPENDS variable This variable should be used to specify dependencies that will be added to DEPENDS only if wic image build is 'active' i.e. when 'wic' is in IMAGE_FSTYPES. Signed-off-by: Ed Bartosh --- meta/classes/image_types_wic.bbclass | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta/classes') diff --git a/meta/classes/image_types_wic.bbclass b/meta/classes/image_types_wic.bbclass index d012a5d5ca..500c8c5653 100644 --- a/meta/classes/image_types_wic.bbclass +++ b/meta/classes/image_types_wic.bbclass @@ -40,6 +40,8 @@ USING_WIC = "${@bb.utils.contains_any('IMAGE_FSTYPES', 'wic ' + ' '.join('wic.%s WKS_FILE_CHECKSUM = "${@'${WKS_FULL_PATH}:%s' % os.path.exists('${WKS_FULL_PATH}') if '${USING_WIC}' else ''}" do_image_wic[file-checksums] += "${WKS_FILE_CHECKSUM}" do_image_wic[depends] += "wic-tools:do_build" +WKS_FILE_DEPENDS ??= '' +DEPENDS += "${@ '${WKS_FILE_DEPENDS}' if d.getVar('USING_WIC') else '' }" python do_write_wks_template () { """Write out expanded template contents to WKS_FULL_PATH.""" -- cgit 1.2.3-korg