summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel.bbclass
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2012-06-20 10:31:39 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-21 13:03:03 +0100
commita5b568eb372ac155718a8700da5e7b3e2ae6e9ce (patch)
treef4397d6d47418c9db578bb116a044391635ac15b /meta/classes/kernel.bbclass
parent9b8daa906f860846fb6e87cdb5a7a9aa009bd4d6 (diff)
downloadpoky-a5b568eb372ac155718a8700da5e7b3e2ae6e9ce.tar.gz
kernel: save $kerndir/tools and $kerndir/lib from pruning
The kernel source tree in the sysroot has all unecessary source code removed. The existing use case is to support module building out of the sysroot, but as more toolsa are moved into the kernel tree itself there are new use cases for the kernel sysroot source. To avoid putting dependencies on the kernel, and to be able to individually build and package these tools out of the source tree, we can save $kerndir/tools and $kernddir/lib from being removed. This enables tools like perf to be built our of the kernel source in the sysroot, without significantly increasing the amount of source in the sysroot. (From OE-Core rev: e6cadd9074b18798f2df7c3f89dc35a98c29b6e5) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r--meta/classes/kernel.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index a455164649..a80ef9c0a8 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -173,7 +173,7 @@ kernel_do_install() {
173 # 173 #
174 oe_runmake -C $kerneldir CC="${KERNEL_CC}" LD="${KERNEL_LD}" clean 174 oe_runmake -C $kerneldir CC="${KERNEL_CC}" LD="${KERNEL_LD}" clean
175 make -C $kerneldir _mrproper_scripts 175 make -C $kerneldir _mrproper_scripts
176 find $kerneldir -path $kerneldir/scripts -prune -o -name "*.[csS]" -exec rm '{}' \; 176 find $kerneldir -path $kerneldir/lib -prune -o -path $kerneldir/tools -prune -o -path $kerneldir/scripts -prune -o -name "*.[csS]" -exec rm '{}' \;
177 find $kerneldir/Documentation -name "*.txt" -exec rm '{}' \; 177 find $kerneldir/Documentation -name "*.txt" -exec rm '{}' \;
178 178
179 # As of Linux kernel version 3.0.1, the clean target removes 179 # As of Linux kernel version 3.0.1, the clean target removes