diff options
author | Laurent Vivier | 2020-03-10 11:33:46 +0100 |
---|---|---|
committer | Laurent Vivier | 2020-03-20 16:02:00 +0100 |
commit | 5b85cae95544d1db9f067a3846bb8659d9bc5711 (patch) | |
tree | 995aa832d158b4d4139784b63ba426bb09c01e9b /configure | |
parent | linux-user, hppa: add syscall table generation support (diff) | |
download | qemu-5b85cae95544d1db9f067a3846bb8659d9bc5711.tar.gz qemu-5b85cae95544d1db9f067a3846bb8659d9bc5711.tar.xz qemu-5b85cae95544d1db9f067a3846bb8659d9bc5711.zip |
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 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1889,7 +1889,7 @@ rm -f */config-devices.mak.d # Remove syscall_nr.h to be sure they will be regenerated in the build # directory, not in the source directory -for arch in alpha hppa ; do +for arch in alpha hppa m68k ; do # remove the file if it has been generated in the source directory rm -f "${source_path}/linux-user/${arch}/syscall_nr.h" # remove the dependency files @@ -7821,6 +7821,7 @@ case "$target_name" in m68k) bflt="yes" gdb_xml_files="cf-core.xml cf-fp.xml m68k-fp.xml" + TARGET_SYSTBL_ABI=common ;; microblaze|microblazeel) TARGET_ARCH=microblaze |