diff options
author | Jack Mitchell <jack@embed.me.uk> | 2017-03-11 14:16:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-13 09:43:05 +0000 |
commit | 60c90398580998b2379bb438f0f75b29285135a5 (patch) | |
tree | 25782ac415f3296710f24a393da7a5364c2632a1 /meta/recipes-bsp | |
parent | 67d7ea2db8bce766daf3419feae3cd8045af5114 (diff) | |
download | openembedded-core-60c90398580998b2379bb438f0f75b29285135a5.tar.gz openembedded-core-60c90398580998b2379bb438f0f75b29285135a5.tar.bz2 openembedded-core-60c90398580998b2379bb438f0f75b29285135a5.zip |
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 <jack@embed.me.uk>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp')
-rw-r--r-- | meta/recipes-bsp/u-boot/u-boot.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc index c2bcf99840..aa21c0e556 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 |