summaryrefslogtreecommitdiffstats
path: root/meta/classes/image_types_wic.bbclass
diff options
context:
space:
mode:
authorMing Liu <liu.ming50@gmail.com>2018-04-20 09:32:56 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-06-15 17:56:57 +0100
commitd85fcec56302a0a83ce82d128e50507fbea1de4c (patch)
treef2bdb1b0b2f377604b02ebf56644bc10dbe7104a /meta/classes/image_types_wic.bbclass
parent86f75467839661337b77fa63d0e05bd9b7cc86b7 (diff)
downloadpoky-d85fcec56302a0a83ce82d128e50507fbea1de4c.tar.gz
image_types_wic: add do_image_wic before do_image_complete
We have some tasks depending on image's do_image_complete task, and we are also using WKS files to generate partitioned images, but now there is lacking a inter dependency between do_image_wic and do_image_complete, so we have to depend on both of them. Fixed by adding the dependency. (From OE-Core rev: e3a25f06f2cde701415f4130a43c9b3895d42f10) (From OE-Core rev: a2f8f3d3ed92898c71c68dbfe27523e77e604af9) Signed-off-by: Ming Liu <liu.ming50@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image_types_wic.bbclass')
-rw-r--r--meta/classes/image_types_wic.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/image_types_wic.bbclass b/meta/classes/image_types_wic.bbclass
index dcf620cee0..5b40a9e919 100644
--- a/meta/classes/image_types_wic.bbclass
+++ b/meta/classes/image_types_wic.bbclass
@@ -102,6 +102,7 @@ python () {
102 # a variable and let the metadata deal with the deps. 102 # a variable and let the metadata deal with the deps.
103 d.setVar('_WKS_TEMPLATE', body) 103 d.setVar('_WKS_TEMPLATE', body)
104 bb.build.addtask('do_write_wks_template', 'do_image_wic', None, d) 104 bb.build.addtask('do_write_wks_template', 'do_image_wic', None, d)
105 bb.build.addtask('do_image_wic', 'do_image_complete', None, d)
105} 106}
106 107
107# 108#