]> code.ossystems Code Review - openembedded-core.git/commitdiff
linux-yocto.inc: ensure do_kernel_link_images runs before do_strip
authorAndre McCurdy <armccurdy@gmail.com>
Thu, 13 Oct 2016 18:49:33 +0000 (11:49 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 15 Oct 2016 08:57:05 +0000 (09:57 +0100)
If the do_kernel_link_images task is enabled, then it needs to run
before do_strip. The addtask statement for do_strip makes that
explicit. For consistency, make it explicit in the addtask statement
for do_kernel_link_images too.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-kernel/linux/linux-yocto.inc

index d8d4387a4c3bc1f762a45070dd40aa4311ae410e..09cd1f178a7844a8a2f46166b9a6f277cf9c47d0 100644 (file)
@@ -65,6 +65,6 @@ do_install_append(){
 
 # extra tasks
 addtask kernel_version_sanity_check after do_kernel_metadata do_kernel_checkout before do_compile
-addtask kernel_link_images after do_compile before do_install
+addtask kernel_link_images after do_compile before do_strip
 addtask validate_branches before do_patch after do_kernel_checkout
 addtask kernel_configcheck after do_configure before do_compile