Move the headers to include/asm-x86 and fixup the header install make rules Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>tirimbino
parent
27bd0c9556
commit
96a388de5d
@ -1,12 +0,0 @@ |
||||
include include/asm-generic/Kbuild.asm |
||||
|
||||
header-y += boot.h |
||||
header-y += debugreg.h |
||||
header-y += ldt.h |
||||
header-y += msr-index.h |
||||
header-y += ptrace-abi.h |
||||
header-y += ucontext.h |
||||
|
||||
unifdef-y += msr.h |
||||
unifdef-y += mtrr.h |
||||
unifdef-y += vm86.h |
@ -1 +0,0 @@ |
||||
#include <asm-x86_64/k8.h> |
@ -1 +0,0 @@ |
||||
#include "asm-x86_64/pci-direct.h" |
@ -1 +0,0 @@ |
||||
#include <asm-x86_64/stacktrace.h> |
@ -1,6 +1,6 @@ |
||||
/*
|
||||
* MPC1211 uses PC/AT style RTC definitions. |
||||
*/ |
||||
#include <asm-i386/mc146818rtc.h> |
||||
#include <asm-x86/mc146818rtc_32.h> |
||||
|
||||
|
||||
|
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "8253pit_32.h" |
||||
#else |
||||
# include "8253pit_64.h" |
||||
#endif |
@ -0,0 +1,88 @@ |
||||
include include/asm-generic/Kbuild.asm |
||||
|
||||
header-y += boot.h |
||||
header-y += bootsetup.h |
||||
header-y += debugreg_32.h |
||||
header-y += debugreg_64.h |
||||
header-y += debugreg.h |
||||
header-y += ldt_32.h |
||||
header-y += ldt_64.h |
||||
header-y += ldt.h |
||||
header-y += msr-index.h |
||||
header-y += prctl.h |
||||
header-y += ptrace-abi_32.h |
||||
header-y += ptrace-abi_64.h |
||||
header-y += ptrace-abi.h |
||||
header-y += sigcontext32.h |
||||
header-y += ucontext_32.h |
||||
header-y += ucontext_64.h |
||||
header-y += ucontext.h |
||||
header-y += vsyscall32.h |
||||
|
||||
unifdef-y += a.out_32.h |
||||
unifdef-y += a.out_64.h |
||||
unifdef-y += auxvec_32.h |
||||
unifdef-y += auxvec_64.h |
||||
unifdef-y += byteorder_32.h |
||||
unifdef-y += byteorder_64.h |
||||
unifdef-y += elf_32.h |
||||
unifdef-y += elf_64.h |
||||
unifdef-y += errno_32.h |
||||
unifdef-y += errno_64.h |
||||
unifdef-y += ioctls_32.h |
||||
unifdef-y += ioctls_64.h |
||||
unifdef-y += ipcbuf_32.h |
||||
unifdef-y += ipcbuf_64.h |
||||
unifdef-y += mce.h |
||||
unifdef-y += mman_32.h |
||||
unifdef-y += mman_64.h |
||||
unifdef-y += msgbuf_32.h |
||||
unifdef-y += msgbuf_64.h |
||||
unifdef-y += msr_32.h |
||||
unifdef-y += msr_64.h |
||||
unifdef-y += msr.h |
||||
unifdef-y += mtrr_32.h |
||||
unifdef-y += mtrr_64.h |
||||
unifdef-y += mtrr.h |
||||
unifdef-y += page_32.h |
||||
unifdef-y += page_64.h |
||||
unifdef-y += param_32.h |
||||
unifdef-y += param_64.h |
||||
unifdef-y += posix_types_32.h |
||||
unifdef-y += posix_types_64.h |
||||
unifdef-y += ptrace_32.h |
||||
unifdef-y += ptrace_64.h |
||||
unifdef-y += resource_32.h |
||||
unifdef-y += resource_64.h |
||||
unifdef-y += sembuf_32.h |
||||
unifdef-y += sembuf_64.h |
||||
unifdef-y += setup_32.h |
||||
unifdef-y += setup_64.h |
||||
unifdef-y += shmbuf_32.h |
||||
unifdef-y += shmbuf_64.h |
||||
unifdef-y += shmparam_32.h |
||||
unifdef-y += shmparam_64.h |
||||
unifdef-y += sigcontext_32.h |
||||
unifdef-y += sigcontext_64.h |
||||
unifdef-y += siginfo_32.h |
||||
unifdef-y += siginfo_64.h |
||||
unifdef-y += signal_32.h |
||||
unifdef-y += signal_64.h |
||||
unifdef-y += sockios_32.h |
||||
unifdef-y += sockios_64.h |
||||
unifdef-y += stat_32.h |
||||
unifdef-y += stat_64.h |
||||
unifdef-y += statfs_32.h |
||||
unifdef-y += statfs_64.h |
||||
unifdef-y += termbits_32.h |
||||
unifdef-y += termbits_64.h |
||||
unifdef-y += termios_32.h |
||||
unifdef-y += termios_64.h |
||||
unifdef-y += types_32.h |
||||
unifdef-y += types_64.h |
||||
unifdef-y += unistd_32.h |
||||
unifdef-y += unistd_64.h |
||||
unifdef-y += user_32.h |
||||
unifdef-y += user_64.h |
||||
unifdef-y += vm86.h |
||||
unifdef-y += vsyscall.h |
@ -0,0 +1,13 @@ |
||||
#ifdef __KERNEL__ |
||||
# ifdef CONFIG_X86_32 |
||||
# include "a.out_32.h" |
||||
# else |
||||
# include "a.out_64.h" |
||||
# endif |
||||
#else |
||||
# ifdef __i386__ |
||||
# include "a.out_32.h" |
||||
# else |
||||
# include "a.out_64.h" |
||||
# endif |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "acpi_32.h" |
||||
#else |
||||
# include "acpi_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "agp_32.h" |
||||
#else |
||||
# include "agp_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "alternative-asm_32.i" |
||||
#else |
||||
# include "alternative-asm_64.i" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "alternative_32.h" |
||||
#else |
||||
# include "alternative_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "apic_32.h" |
||||
#else |
||||
# include "apic_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "apicdef_32.h" |
||||
#else |
||||
# include "apicdef_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "atomic_32.h" |
||||
#else |
||||
# include "atomic_64.h" |
||||
#endif |
@ -0,0 +1,13 @@ |
||||
#ifdef __KERNEL__ |
||||
# ifdef CONFIG_X86_32 |
||||
# include "auxvec_32.h" |
||||
# else |
||||
# include "auxvec_64.h" |
||||
# endif |
||||
#else |
||||
# ifdef __i386__ |
||||
# include "auxvec_32.h" |
||||
# else |
||||
# include "auxvec_64.h" |
||||
# endif |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "bitops_32.h" |
||||
#else |
||||
# include "bitops_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "bug_32.h" |
||||
#else |
||||
# include "bug_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "bugs_32.h" |
||||
#else |
||||
# include "bugs_64.h" |
||||
#endif |
@ -0,0 +1,13 @@ |
||||
#ifdef __KERNEL__ |
||||
# ifdef CONFIG_X86_32 |
||||
# include "byteorder_32.h" |
||||
# else |
||||
# include "byteorder_64.h" |
||||
# endif |
||||
#else |
||||
# ifdef __i386__ |
||||
# include "byteorder_32.h" |
||||
# else |
||||
# include "byteorder_64.h" |
||||
# endif |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "cache_32.h" |
||||
#else |
||||
# include "cache_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "cacheflush_32.h" |
||||
#else |
||||
# include "cacheflush_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "checksum_32.h" |
||||
#else |
||||
# include "checksum_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "cmpxchg_32.h" |
||||
#else |
||||
# include "cmpxchg_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "cpufeature_32.h" |
||||
#else |
||||
# include "cpufeature_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "cputime_32.h" |
||||
#else |
||||
# include "cputime_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "current_32.h" |
||||
#else |
||||
# include "current_64.h" |
||||
#endif |
@ -0,0 +1,13 @@ |
||||
#ifdef __KERNEL__ |
||||
# ifdef CONFIG_X86_32 |
||||
# include "debugreg_32.h" |
||||
# else |
||||
# include "debugreg_64.h" |
||||
# endif |
||||
#else |
||||
# ifdef __i386__ |
||||
# include "debugreg_32.h" |
||||
# else |
||||
# include "debugreg_64.h" |
||||
# endif |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "delay_32.h" |
||||
#else |
||||
# include "delay_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "desc_32.h" |
||||
#else |
||||
# include "desc_64.h" |
||||
#endif |
@ -0,0 +1,5 @@ |
||||
#ifdef CONFIG_X86_32 |
||||
# include "device_32.h" |
||||
#else |
||||
# include "device_64.h" |
||||
#endif |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue