diff options
author | Laurent Vivier <laurent@vivier.eu> | 2020-03-10 11:33:54 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-03-20 16:02:00 +0100 |
commit | bb0cdc03673d8c7e7d4d0f8a9693bc11d531b6cd (patch) | |
tree | fd150d68d6b4b1f7c5ca74608ec518d1d61a2d0e /linux-user/Makefile.objs | |
parent | 318f371dcf797ab29dccabd3d9956f835c6fa69e (diff) | |
download | qemu-bb0cdc03673d8c7e7d4d0f8a9693bc11d531b6cd.zip |
linux-user, sparc, sparc64: add syscall table generation support
Copy syscall.tbl and syscallhdr.sh from linux/arch/sparc/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-13-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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/Makefile.objs b/linux-user/Makefile.objs index f4e666e74c..36f20cad79 100644 --- a/linux-user/Makefile.objs +++ b/linux-user/Makefile.objs @@ -16,4 +16,6 @@ obj-$(TARGET_PPC) += ppc/ obj-$(TARGET_PPC64) += ppc/ obj-$(TARGET_S390X) += s390x/ obj-$(TARGET_SH4) += sh4/ +obj-$(TARGET_SPARC) += sparc/ +obj-$(TARGET_SPARC64) += $(TARGET_ABI_DIR)/ obj-$(TARGET_XTENSA) += xtensa/ |