diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-03-30 15:17:04 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-01 08:14:58 +0100 |
commit | 35565057fa4e825d6c2a6a2edccf07ab794d6235 (patch) | |
tree | c545175cfa4a4460155e55db07f71c3ca53d0a7c /meta/classes | |
parent | 28997864e22fa994ed115e81fd7d151fe12a3ca8 (diff) | |
download | poky-35565057fa4e825d6c2a6a2edccf07ab794d6235.tar.gz |
kernel.bbclass: fix a typo
In a addtask statement, do_strip should be strip.
(From OE-Core rev: 8413e26164644230615f4503ca9488b5b4021aeb)
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 244087a59d..91c260a1b9 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -566,7 +566,7 @@ do_strip() { | |||
566 | } | 566 | } |
567 | do_strip[dirs] = "${B}" | 567 | do_strip[dirs] = "${B}" |
568 | 568 | ||
569 | addtask do_strip before do_sizecheck after do_kernel_link_images | 569 | addtask strip before do_sizecheck after do_kernel_link_images |
570 | 570 | ||
571 | # Support checking the kernel size since some kernels need to reside in partitions | 571 | # Support checking the kernel size since some kernels need to reside in partitions |
572 | # with a fixed length or there is a limit in transferring the kernel to memory | 572 | # with a fixed length or there is a limit in transferring the kernel to memory |