aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/classes/kernel.bbclass
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-05-16 20:57:45 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2011-05-16 20:57:45 +0200
commit68c15845d087df0a6f66c58a9fd80548a9bb3a59 (patch)
tree1038d4cf44df840aab3008a452eef8ff5c094f43 /meta-oe/classes/kernel.bbclass
parent9c5f5a80700cf57ecc70d0356979f1281fae0d61 (diff)
downloadmeta-openembedded-68c15845d087df0a6f66c58a9fd80548a9bb3a59.tar.gz
testlab, blacklist bbclass: import from meta-angstrom
These are good for general use since other distros (SHR, SlugOS) are copying them into their layers nowadays. Let's stop this duplication bu moving them here. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/classes/kernel.bbclass')
-rw-r--r--meta-oe/classes/kernel.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/classes/kernel.bbclass b/meta-oe/classes/kernel.bbclass
index 9a80a1cf56..e1e8197cb6 100644
--- a/meta-oe/classes/kernel.bbclass
+++ b/meta-oe/classes/kernel.bbclass
@@ -159,7 +159,8 @@ kernel_do_install() {
# we clean the scripts dir while leaving the generated config
# and include files.
#
- oe_runmake -C $kerneldir CC="${KERNEL_CC}" LD="${KERNEL_LD}" clean
+ find $kerneldir -name "*.o" -delete
+ #oe_runmake -C $kerneldir CC="${KERNEL_CC}" LD="${KERNEL_LD}" clean
make -C $kerneldir _mrproper_scripts
find $kerneldir -path $kerneldir/scripts -prune -o -name "*.[csS]" -exec rm '{}' \;
find $kerneldir/Documentation -name "*.txt" -exec rm '{}' \;