From: Jack Mitchell Date: Sat, 11 Mar 2017 14:16:02 +0000 (+0000) Subject: u-boot: fix extlinux creation race X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~22114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60c90398580998b2379bb438f0f75b29285135a5;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git u-boot: fix extlinux creation race There was a race condition in the uboot-extlinux bbclass where only a half written extlinux.conf would be put in the deploy directory. Fix this by adding the deploy task after the do_install rather than after the do_compile. Signed-off-by: Jack Mitchell Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc index c2bcf998402..aa21c0e556f 100644 --- a/meta/recipes-bsp/u-boot/u-boot.inc +++ b/meta/recipes-bsp/u-boot/u-boot.inc @@ -304,4 +304,4 @@ do_deploy () { fi } -addtask deploy before do_build after do_compile +addtask deploy before do_build after do_install