[oe-commits] [openembedded-core] 01/37: u-boot: fix extlinux creation race

git at git.openembedded.org git at git.openembedded.org
Sat Mar 11 16:18:38 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit a58fe65831c1da419ffec6ba5563db65636dc66f
Author: Jack Mitchell <jack at embed.me.uk>
AuthorDate: Sat Mar 11 14:16:02 2017 +0000

    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 at embed.me.uk>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-bsp/u-boot/u-boot.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index c2bcf99..aa21c0e 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

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list