diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-09-16 17:32:53 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-20 15:10:36 +0100 |
commit | c687c9fcc010947f52e1cd153ea74ae5f6343ca4 (patch) | |
tree | 6855f77e870aae9c9a6ab50b6e863485b76e43aa /meta | |
parent | bdfce776843bf4287251923c79bc15365c20b4a1 (diff) | |
download | openembedded-core-c687c9fcc010947f52e1cd153ea74ae5f6343ca4.tar.gz openembedded-core-c687c9fcc010947f52e1cd153ea74ae5f6343ca4.tar.bz2 openembedded-core-c687c9fcc010947f52e1cd153ea74ae5f6343ca4.zip |
image_types: add parted-native to do_image_wic depends
As parted is always used by wic it makes sense to make do_image_wic
dependent on parted-native:do_populate_sysroot. This should help
to avoid adding it to all wic image recipes.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/image_types.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index 5ef6f60b89..0bb6252430 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass @@ -218,6 +218,7 @@ IMAGE_CMD_wic[vardepsexclude] = "WKS_FULL_PATH WKS_FILES" USING_WIC = "${@bb.utils.contains_any('IMAGE_FSTYPES', 'wic ' + ' '.join('wic.%s' % c for c in '${CONVERSIONTYPES}'.split()), '1', '', d)}" 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] += "parted-native:do_populate_sysroot" python do_write_wks_template () { """Write out expanded template contents to WKS_FULL_PATH.""" |