diff options
author | Laurent Vivier <laurent@vivier.eu> | 2020-03-10 11:33:56 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-03-20 16:02:00 +0100 |
commit | 289881175d05f1c35e8cf86b9de2757ef6410a69 (patch) | |
tree | 4da0e991fd1aeadeeb258b810ca0ffcead169857 /linux-user/Makefile.objs | |
parent | 9d12f79daa1459c0c63d5f923e6cbd270f57ff4c (diff) |
linux-user, i386: add syscall table generation support
Copy syscall_32.tbl and syscallhdr.sh from linux/arch/x86/kernel/syscalls v5.5
Update syscallhdr.sh to generate QEMU syscall_nr.h
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
Message-Id: <20200310103403.3284090-15-laurent@vivier.eu>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/Makefile.objs')
-rw-r--r-- | linux-user/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/Makefile.objs b/linux-user/Makefile.objs index 36f20cad79..720d9773b8 100644 --- a/linux-user/Makefile.objs +++ b/linux-user/Makefile.objs @@ -10,6 +10,7 @@ obj-$(TARGET_AARCH64) += arm/semihost.o obj-$(TARGET_ALPHA) += alpha/ obj-$(TARGET_ARM) += arm/ obj-$(TARGET_HPPA) += hppa/ +obj-$(TARGET_I386) += i386/ obj-$(TARGET_M68K) += m68k/ obj-$(TARGET_MICROBLAZE) += microblaze/ obj-$(TARGET_PPC) += ppc/ |