[oe-commits] [openembedded-core] 09/28: kernel-yocto.bbclass: fix a wrong inter-task dependency

git at git.openembedded.org git at git.openembedded.org
Fri Mar 6 08:19:52 UTC 2020


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

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

commit 965090f42bc0576e938a0575b7938a1ff60b0018
Author: Ming Liu <liu.ming at toradex.com>
AuthorDate: Wed Mar 4 14:55:43 2020 +0100

    kernel-yocto.bbclass: fix a wrong inter-task dependency
    
    do_kernel_checkout and do_symlink_kernsrc are both modifying ${S}, they
    could conflict with eacher other, move do_kernel_checkout after
    do_symlink_kernsrc does fix that.
    
    Signed-off-by: Ming Liu <liu.ming at toradex.com>
    Signed-off-by: Stefan Agner <stefan.agner at toradex.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/kernel-yocto.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index 44863ad..d71ce21 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -317,7 +317,7 @@ do_kernel_checkout() {
 }
 do_kernel_checkout[dirs] = "${S}"
 
-addtask kernel_checkout before do_kernel_metadata after do_unpack
+addtask kernel_checkout before do_kernel_metadata after do_symlink_kernsrc
 addtask kernel_metadata after do_validate_branches do_unpack before do_patch
 do_kernel_metadata[depends] = "kern-tools-native:do_populate_sysroot"
 do_validate_branches[depends] = "kern-tools-native:do_populate_sysroot"

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


More information about the Openembedded-commits mailing list