diff options
author | Ming Liu <liu.ming50@gmail.com> | 2018-04-20 09:32:56 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-04 09:54:58 +0100 |
commit | e3a25f06f2cde701415f4130a43c9b3895d42f10 (patch) | |
tree | 7966d492baff876b82de2eefe547e9db44f9098b /meta | |
parent | 43dc32aa00c87f62dcf9a857d4e32469ce27c9e9 (diff) | |
download | openembedded-core-e3a25f06f2cde701415f4130a43c9b3895d42f10.tar.gz openembedded-core-e3a25f06f2cde701415f4130a43c9b3895d42f10.tar.bz2 openembedded-core-e3a25f06f2cde701415f4130a43c9b3895d42f10.zip |
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.
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/image_types_wic.bbclass | 1 |
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 () { # a variable and let the metadata deal with the deps. d.setVar('_WKS_TEMPLATE', body) bb.build.addtask('do_write_wks_template', 'do_image_wic', None, d) + bb.build.addtask('do_image_wic', 'do_image_complete', None, d) } # |