[poky] [master] kernel.bbclass: Copy bounds.h only if it exists, needed for 2.6.x.
Leon Woestenberg
sidebranch.openembedded at gmail.com
Mon Jul 30 15:03:27 PDT 2012
From: Leon Woestenberg <leon at sidebranch.com>
Linux 2.6.x kernels did not (all) have the bounds.h file, so copy
only iff exists.
Signed-off-by: Leon Woestenberg <leon at sidebranch.com>
---
meta/classes/kernel.bbclass | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index ab984e3..1d8dff9 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -188,7 +188,9 @@ kernel_do_install() {
fi
# Necessary for building modules like compat-wireless.
- cp include/generated/bounds.h $kerneldir/include/generated/bounds.h
+ 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 or arch QA errors
# during do_package for cross-compiled platforms
--
1.7.0.4
More information about the poky
mailing list