diff options
author | Laurent Vivier <laurent@vivier.eu> | 2020-03-10 11:33:46 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-03-20 16:02:00 +0100 |
commit | 5b85cae95544d1db9f067a3846bb8659d9bc5711 (patch) | |
tree | 995aa832d158b4d4139784b63ba426bb09c01e9b /linux-user/Makefile.objs | |
parent | 9566f4c61fa3bfcec3a7132d551542115494fa0b (diff) |
linux-user, m68k: add syscall table generation support
Copy syscall.tbl and syscallhdr.sh from linux/arch/m68k/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-5-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 9f8e001241..ac74b23683 100644 --- a/linux-user/Makefile.objs +++ b/linux-user/Makefile.objs @@ -11,3 +11,4 @@ obj-$(TARGET_AARCH64) += arm/semihost.o obj-$(TARGET_ALPHA) += alpha/ obj-$(TARGET_HPPA) += hppa/ +obj-$(TARGET_M68K) += m68k/ |