-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x86: Machine-readable syscall tables and scripts to process them
Create a simple set of syscall tables and scripts to turn them into both header files (unistd_*.h) and macros for generating the system call tables. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
- Loading branch information
H. Peter Anvin
committed
Nov 17, 2011
1 parent
d5e553d
commit d181764
Showing
5 changed files
with
771 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
out := $(obj)/../include/generated/asm | ||
|
||
# Create output directory if not already present | ||
_dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)') | ||
|
||
syscall32 := $(srctree)/$(src)/syscall_32.tbl | ||
syscall64 := $(srctree)/$(src)/syscall_64.tbl | ||
|
||
syshdr := $(srctree)/$(src)/syscallhdr.sh | ||
systbl := $(srctree)/$(src)/syscalltbl.sh | ||
|
||
quiet_cmd_syshdr = SYSHDR $@ | ||
cmd_syshdr = $(CONFIG_SHELL) '$(syshdr)' $< $@ \ | ||
$(syshdr_abi_$(basetarget)) $(syshdr_pfx_$(basetarget)) | ||
quiet_cmd_systbl = SYSTBL $@ | ||
cmd_systbl = $(CONFIG_SHELL) '$(systbl)' $< $@ | ||
|
||
syshdr_abi_unistd_32 := i386 | ||
$(out)/unistd_32.h: $(syscall32) $(syshdr) | ||
$(call if_changed,syshdr) | ||
|
||
syshdr_abi_unistd_32_ia32 := i386 | ||
syshdr_pfx_unistd_32_ia32 := ia32_ | ||
$(out)/unistd_32_ia32.h: $(syscall32) $(syshdr) | ||
$(call if_changed,syshdr) | ||
|
||
syshdr_abi_unistd_64 := 64 | ||
$(out)/unistd_64.h: $(syscall64) $(syshdr) | ||
$(call if_changed,syshdr) | ||
|
||
$(out)/syscalls_32.h: $(syscall32) $(systbl) | ||
$(call if_changed,systbl) | ||
$(out)/syscalls_64.h: $(syscall64) $(systbl) | ||
$(call if_changed,systbl) | ||
|
||
syshdr-y += unistd_32.h unistd_64.h | ||
syshdr-y += syscalls_32.h | ||
syshdr-$(CONFIG_X86_64) += unistd_32_ia32.h | ||
syshdr-$(CONFIG_X86_64) += syscalls_64.h | ||
|
||
targets += $(syshdr-y) | ||
|
||
all: $(addprefix $(out)/,$(targets)) |
Oops, something went wrong.