All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][for-denzil][PATCH 1/8] kernel: save $kerndir/tools and $kerndir/lib from pruning
@ 2012-09-06 11:23 Koen Kooi
  2012-09-06 11:23 ` [meta-oe][for-denzil][PATCH 2/8] recipes-kernel: make perf a standalone package Koen Kooi
                   ` (7 more replies)
  0 siblings, 8 replies; 17+ messages in thread
From: Koen Kooi @ 2012-09-06 11:23 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Koen Kooi, Eric Bénard

From: Bruce Ashfield <bruce.ashfield@windriver.com>

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.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
 meta-oe/classes/kernel.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-oe/classes/kernel.bbclass b/meta-oe/classes/kernel.bbclass
index ce82351..c44a2f5 100644
--- a/meta-oe/classes/kernel.bbclass
+++ b/meta-oe/classes/kernel.bbclass
@@ -178,7 +178,7 @@ kernel_do_install() {
 	#
 	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 -path $kerneldir/lib -prune -o -path $kerneldir/tools -prune -o -path $kerneldir/scripts -prune -o -name "*.[csS]" -exec rm '{}' \;
 	find $kerneldir/Documentation -name "*.txt" -exec rm '{}' \;
 
 	# As of Linux kernel version 3.0.1, the clean target removes
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2012-10-17 14:40 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-06 11:23 [meta-oe][for-denzil][PATCH 1/8] kernel: save $kerndir/tools and $kerndir/lib from pruning Koen Kooi
2012-09-06 11:23 ` [meta-oe][for-denzil][PATCH 2/8] recipes-kernel: make perf a standalone package Koen Kooi
2012-09-06 11:23 ` [meta-oe][for-denzil][PATCH 3/8] kernel: Add kernel headers to kernel-dev package Koen Kooi
2012-09-06 16:43   ` McClintock Matthew-B29882
2012-09-06 16:47     ` Koen Kooi
2012-09-06 18:13       ` McClintock Matthew-B29882
2012-09-06 11:23 ` [meta-oe][for-denzil][PATCH 4/8] kernel.bbclass: Dont package kxgettext.o Koen Kooi
2012-09-06 11:23 ` [meta-oe][for-denzil][PATCH 5/8] kernel.bbclass: add deploy link to KERNEL_IMAGETYPE Koen Kooi
2012-09-06 11:23 ` [meta-oe][for-denzil][PATCH 6/8] kernel.bbclass: replace os.system with subprocess.call Koen Kooi
2012-09-06 11:23 ` [meta-oe][for-denzil][PATCH 7/8] kernel.bbclass: fix external module building Koen Kooi
2012-09-06 11:23 ` [meta-oe][for-denzil][PATCH 8/8] kernel.bbclass: add non-santized kernel provides Koen Kooi
2012-09-06 11:41 ` [meta-oe][for-denzil][PATCH 1/8] kernel: save $kerndir/tools and $kerndir/lib from pruning Koen Kooi
2012-10-10 21:32   ` Denys Dmytriyenko
2012-10-15 19:23     ` Denys Dmytriyenko
2012-10-17 12:39       ` Koen Kooi
2012-10-17 13:26         ` Denys Dmytriyenko
2012-10-17 13:54         ` Eric Bénard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.