summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-07-31 08:10:40 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-19 10:31:08 +0100
commit813256bf7bb6e26d542d5f769e2802564116ebe5 (patch)
treef9ccc3de907c701d7faf54a11e7f3060c27f782c /meta
parent884cab0428cff2ffd070b6f36b688ca9851fbe43 (diff)
downloadopenembedded-core-813256bf7bb6e26d542d5f769e2802564116ebe5.tar.gz
kernel.bbclass: Preserve generated headers
asm/unistd.h includes asm/unistd_64.h on x86_64 and asm/unistd_32.h on i386 but these files are generated files in 3.4 and when we do 'make clean' they get deleted and it shows up as an error when building external modules. May be its a 3.4 kernel bug may be not but make clean should have left the tree in a shape to build modules but it does not. Probably we should run make modules_prepare after having run make clean. Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/kernel.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 0b970d7ba5..b24ab1a3f1 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -191,6 +191,8 @@ kernel_do_install() {
if [ -f include/generated/bounds.h ]; then
cp include/generated/bounds.h $kerneldir/include/generated/bounds.h
fi
+ mkdir -p $kerneldir/arch/${ARCH}/include/generated/
+ cp -fR arch/${ARCH}/include/generated/* $kerneldir/arch/${ARCH}/include/generated/
# Remove the following binaries which cause strip or arch QA errors
# during do_package for cross-compiled platforms