diff options
author | Laurent Vivier <laurent@vivier.eu> | 2020-03-10 11:33:59 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-03-20 16:02:00 +0100 |
commit | 686a0fe4dbeb711eeed83d7a3e307c6506fdb8b3 (patch) | |
tree | 4a54b16ceebaa71ac0a06bcca585274af7bcc2aa /linux-user/Makefile.objs | |
parent | c59716fc5b62734052d26baa06b62467c0d3c125 (diff) | |
download | qemu-686a0fe4dbeb711eeed83d7a3e307c6506fdb8b3.zip qemu-686a0fe4dbeb711eeed83d7a3e307c6506fdb8b3.tar.gz qemu-686a0fe4dbeb711eeed83d7a3e307c6506fdb8b3.tar.bz2 |
linux-user, mips64: add syscall table generation support
Copy syscall_n32.tbl, syscall_n64.tbl and syscallhdr.sh from
linux/arch/parisc/kernel/syscalls v5.5
Update syscallhdr.sh to generate QEMU syscall_nr.h
Move the offsets (6000 for n32 and 5000 for n64) from the file to
the Makefile.objs to be passed to syscallhdr.sh
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
Message-Id: <20200310103403.3284090-18-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 0a0715e..1940910 100644 --- a/linux-user/Makefile.objs +++ b/linux-user/Makefile.objs @@ -14,6 +14,7 @@ obj-$(TARGET_I386) += i386/ obj-$(TARGET_M68K) += m68k/ obj-$(TARGET_MICROBLAZE) += microblaze/ obj-$(TARGET_MIPS) += mips/ +obj-$(TARGET_MIPS64) += mips64/ obj-$(TARGET_PPC) += ppc/ obj-$(TARGET_PPC64) += ppc/ obj-$(TARGET_S390X) += s390x/ |