* Export byteorder.h and swab.h a.out.h to userspace
@ 2008-09-05 6:11 Khem Raj
0 siblings, 0 replies; only message in thread
From: Khem Raj @ 2008-09-05 6:11 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 386 bytes --]
Hi,
Some architectures have moved the asm/ into arch/ and some have not. This patch checks for a.out.h in both places before exporting it.
When building headers for arm I noticed that userspace headers need linux/byteorder.h and inturn swab.h also to be exported to userspace as asm/byteorder.h needs it.
I test build headers_install for all possible architecutures.
Thanks
-Khem
[-- Attachment #2: diff --]
[-- Type: text/plain, Size: 1871 bytes --]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
diff --git a/include/asm-generic/Kbuild.asm b/include/asm-generic/Kbuild.asm
index 1170dc6..04ccba5 100644
--- a/include/asm-generic/Kbuild.asm
+++ b/include/asm-generic/Kbuild.asm
@@ -1,9 +1,13 @@
ifneq ($(wildcard $(srctree)/include/asm-$(SRCARCH)/kvm.h),)
header-y += kvm.h
+else ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm.h),)
+header-y += kvm.h
endif
ifneq ($(wildcard $(srctree)/include/asm-$(SRCARCH)/a.out.h),)
unifdef-y += a.out.h
+else ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/a.out.h),)
+unifdef-y += a.out.h
endif
unifdef-y += auxvec.h
unifdef-y += byteorder.h
diff --git a/include/linux/Kbuild b/include/linux/Kbuild
index 5939125..49e0fbd 100644
--- a/include/linux/Kbuild
+++ b/include/linux/Kbuild
@@ -41,6 +41,7 @@ header-y += baycom.h
header-y += bfs_fs.h
header-y += blkpg.h
header-y += bpqether.h
+header-y += byteorder.h
header-y += can.h
header-y += cdk.h
header-y += chio.h
@@ -167,7 +168,9 @@ unifdef-y += acct.h
unifdef-y += adb.h
unifdef-y += adfs_fs.h
unifdef-y += agpgart.h
-ifneq ($(wildcard $(srctree)/include/asm-$(SRCARCH)/a.out.h),)
+ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/a.out.h),)
+unifdef-y += a.out.h
+else ifneq ($(wildcard $(srctree)/include/asm-$(SRCARCH)/a.out.h),)
unifdef-y += a.out.h
endif
unifdef-y += apm_bios.h
@@ -260,6 +263,8 @@ unifdef-y += kernel.h
unifdef-y += keyboard.h
ifneq ($(wildcard $(srctree)/include/asm-$(SRCARCH)/kvm.h),)
unifdef-y += kvm.h
+else ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/include/asm/kvm.h),)
+unifdef-y += kvm.h
endif
unifdef-y += llc.h
unifdef-y += loop.h
@@ -334,6 +339,7 @@ unifdef-y += soundcard.h
unifdef-y += stat.h
unifdef-y += stddef.h
unifdef-y += string.h
+unifdef-y += swab.h
unifdef-y += synclink.h
unifdef-y += sysctl.h
unifdef-y += tcp.h
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-09-05 6:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-05 6:11 Export byteorder.h and swab.h a.out.h to userspace Khem Raj
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.