From: Ronan Le Martret Date: Tue, 31 Jan 2017 15:08:03 +0000 (+0100) Subject: Fix crosssdk image creation X-Git-Tag: 3.99.1~174 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;ds=sidebyside;h=352bca8be39cf61c6dea758a76178ef577532f08;p=AGL%2Fmeta-agl.git Fix crosssdk image creation * Task do_populate_sdk and do_rootfs can't be exec simultaneously. * Both exec "createrepo" on the same directory, and so one of them * can failed (randomly). Change-Id: I106423fd9e10e95bd63503ca39921521cd5253f6 Signed-off-by: Ronan Le Martret --- diff --git a/meta-agl/recipes-ivi/images/agl-image-ivi-crosssdk.bb b/meta-agl/recipes-ivi/images/agl-image-ivi-crosssdk.bb index 104462019..9a1695b3d 100644 --- a/meta-agl/recipes-ivi/images/agl-image-ivi-crosssdk.bb +++ b/meta-agl/recipes-ivi/images/agl-image-ivi-crosssdk.bb @@ -10,3 +10,8 @@ IMAGE_FEATURES += "dev-pkgs" IMAGE_INSTALL += "kernel-dev" inherit populate_sdk + +# Task do_populate_sdk and do_rootfs can't be exec simultaneously. +# Both exec "createrepo" on the same directory, and so one of them +# can failed (randomly). +addtask do_populate_sdk after do_rootfs