diff options
| author | Andre McCurdy <armccurdy@gmail.com> | 2016-10-13 11:49:33 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-15 10:01:43 +0100 |
| commit | d8adf58f30e772fa9b9d86a10930e621ab22e5ac (patch) | |
| tree | f8be0a2965373076d39e9c3b9d13a0fa923b8e01 | |
| parent | 76f42d622bab13c674faa6c1a67163e40086051f (diff) | |
| download | poky-d8adf58f30e772fa9b9d86a10930e621ab22e5ac.tar.gz | |
linux-yocto.inc: ensure do_kernel_link_images runs before do_strip
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.
(From OE-Core rev: 1296cc0538efe64d666868fd28c5b195ec9c08ff)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-kernel/linux/linux-yocto.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto.inc b/meta/recipes-kernel/linux/linux-yocto.inc index d8d4387a4c..09cd1f178a 100644 --- a/meta/recipes-kernel/linux/linux-yocto.inc +++ b/meta/recipes-kernel/linux/linux-yocto.inc | |||
| @@ -65,6 +65,6 @@ do_install_append(){ | |||
| 65 | 65 | ||
| 66 | # extra tasks | 66 | # extra tasks |
| 67 | addtask kernel_version_sanity_check after do_kernel_metadata do_kernel_checkout before do_compile | 67 | addtask kernel_version_sanity_check after do_kernel_metadata do_kernel_checkout before do_compile |
| 68 | addtask kernel_link_images after do_compile before do_install | 68 | addtask kernel_link_images after do_compile before do_strip |
| 69 | addtask validate_branches before do_patch after do_kernel_checkout | 69 | addtask validate_branches before do_patch after do_kernel_checkout |
| 70 | addtask kernel_configcheck after do_configure before do_compile | 70 | addtask kernel_configcheck after do_configure before do_compile |
