All of lore.kernel.org
 help / color / mirror / Atom feed
* [for denzil] kernel.bbclass: Copy bounds.h only if it exists, needed for 2.6.x.
@ 2012-07-31 20:35 sidebranch.openembedded
  2012-07-31 22:00 ` Scott Garman
  2012-08-01  6:55 ` Koen Kooi
  0 siblings, 2 replies; 6+ messages in thread
From: sidebranch.openembedded @ 2012-07-31 20:35 UTC (permalink / raw)
  To: yocto; +Cc: Leon Woestenberg

From: Leon Woestenberg <leon@sidebranch.com>

Linux 2.6.x kernels did not (all) have the bounds.h file, so copy
only iff exists.

(See OE-Core 02ac0d1b65389e1779d5f95047f761d7a82ef7a4)

Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
---
 meta/classes/kernel.bbclass |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index c21ab96..5f6ff66 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -183,6 +183,11 @@ kernel_do_install() {
 		cp arch/powerpc/lib/crtsavres.o $kerneldir/arch/powerpc/lib/crtsavres.o
 	fi
 
+	# Necessary for building modules like compat-wireless.
+	if [ -f include/generated/bounds.h ]; then
+		cp include/generated/bounds.h $kerneldir/include/generated/bounds.h
+	fi
+
 	# Remove the following binaries which cause strip errors
 	# during do_package for cross-compiled platforms
 	bin_files="arch/powerpc/boot/addnote arch/powerpc/boot/hack-coff \
-- 
1.7.0.4



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

end of thread, other threads:[~2012-08-01 16:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-31 20:35 [for denzil] kernel.bbclass: Copy bounds.h only if it exists, needed for 2.6.x sidebranch.openembedded
2012-07-31 22:00 ` Scott Garman
2012-07-31 22:08   ` Leon Woestenberg
2012-08-01  6:55 ` Koen Kooi
2012-08-01  9:08   ` Leon Woestenberg
2012-08-01 16:46     ` Scott Garman

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.