summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorLeon Woestenberg <leon@sidebranch.com>2012-07-31 00:03:27 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-31 08:02:09 +0100
commitb915fa43ec96dd1c44846afd4345e9775f95fba6 (patch)
tree65f564a521480db029ec85f5d8deafd80135f107 /meta
parentbd726660a3b365b8f0f702771afef30dcd05b6d7 (diff)
downloadast2050-yocto-poky-b915fa43ec96dd1c44846afd4345e9775f95fba6.zip
ast2050-yocto-poky-b915fa43ec96dd1c44846afd4345e9775f95fba6.tar.gz
kernel.bbclass: Copy bounds.h only if it exists, needed for 2.6.x.
Linux 2.6.x kernels did not (all) have the bounds.h file, so copy only iff exists. (From OE-Core rev: 02ac0d1b65389e1779d5f95047f761d7a82ef7a4) Signed-off-by: Leon Woestenberg <leon@sidebranch.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/kernel.bbclass4
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
OpenPOWER on IntegriCloud