diff options
author | Laurent Vivier <laurent@vivier.eu> | 2019-05-24 18:20:49 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2019-06-26 17:14:41 +0200 |
commit | c6d0700f57b2c50229a27e31b9f99056a011215f (patch) | |
tree | 4d8c0973d5093a173a0cb7ad72c344dc701c377b /linux-user/Makefile.objs | |
parent | 808d77bc5f878a666035d478480b8ed229bd49fe (diff) |
linux-user/m68k: remove simulator syscall interface
This interface has been introduced in 2005 with the
coldfire implementation (e6e5906b6e ColdFire target.)
and looks like to do what the linux-user interface already
does with the TRAP exception rather than the ILLEGAL
exception.
This interface has not been maintained since that.
The semi-hosting interface is not removed so coldfire kernel
with semi-hosting is always supported.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20190524162049.806-1-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, 0 insertions, 1 deletions
diff --git a/linux-user/Makefile.objs b/linux-user/Makefile.objs index 285c5dfa17..d2f33beb5e 100644 --- a/linux-user/Makefile.objs +++ b/linux-user/Makefile.objs @@ -8,4 +8,3 @@ obj-$(TARGET_I386) += vm86.o obj-$(TARGET_ARM) += arm/nwfpe/ obj-$(TARGET_ARM) += arm/semihost.o obj-$(TARGET_AARCH64) += arm/semihost.o -obj-$(TARGET_M68K) += m68k-sim.o |