mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
303395ac3b
Generate system call tables and unistd_*.h automatically from the tables in arch/x86/syscalls. All other information, like NR_syscalls, is auto-generated, some of which is in asm-offsets_*.c. This allows us to keep all the system call information in one place, and allows for kernel space and user space to see different information; this is currently used for the ia32 system call numbers when building the 64-bit kernel, but will be used by the x32 ABI in the near future. This also removes some gratuitious differences between i386, x86-64 and ia32; in particular, now all system call tables are generated with the same mechanism. Cc: H. J. Lu <hjl.tools@gmail.com> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Michal Marek <mmarek@suse.cz> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
27 lines
563 B
Makefile
27 lines
563 B
Makefile
include include/asm-generic/Kbuild.asm
|
|
|
|
header-y += boot.h
|
|
header-y += bootparam.h
|
|
header-y += debugreg.h
|
|
header-y += e820.h
|
|
header-y += hw_breakpoint.h
|
|
header-y += hyperv.h
|
|
header-y += ist.h
|
|
header-y += ldt.h
|
|
header-y += mce.h
|
|
header-y += msr-index.h
|
|
header-y += msr.h
|
|
header-y += mtrr.h
|
|
header-y += posix_types_32.h
|
|
header-y += posix_types_64.h
|
|
header-y += prctl.h
|
|
header-y += processor-flags.h
|
|
header-y += ptrace-abi.h
|
|
header-y += sigcontext32.h
|
|
header-y += ucontext.h
|
|
header-y += vm86.h
|
|
header-y += vsyscall.h
|
|
|
|
genhdr-y += unistd_32.h
|
|
genhdr-y += unistd_64.h
|