1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

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.

(From OE-Core rev: 60c90398580998b2379bb438f0f75b29285135a5)

Signed-off-by: Jack Mitchell <jack@embed.me.uk>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Jack Mitchell
2017-03-11 14:16:02 +00:00
committed by Richard Purdie
parent 8406db9e11
commit 156571fad3
+1 -1
View File
@@ -304,4 +304,4 @@ do_deploy () {
fi
}
addtask deploy before do_build after do_compile
addtask deploy before do_build after do_install