diff options
author | Keith Packard <keithp@keithp.com> | 2021-01-08 22:42:48 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2021-01-18 10:05:06 +0000 |
commit | 56b5170c87ee3e30221eea7425c2fc4f0cc7d4a3 (patch) | |
tree | 7d41a782437039530aa5e5c734785f88cd2bbffc /target/arm/meson.build | |
parent | 797920b952ea154a73049d171f5d5e3d6fb0bbea (diff) | |
download | qemu-56b5170c87ee3e30221eea7425c2fc4f0cc7d4a3.zip qemu-56b5170c87ee3e30221eea7425c2fc4f0cc7d4a3.tar.gz qemu-56b5170c87ee3e30221eea7425c2fc4f0cc7d4a3.tar.bz2 |
semihosting: Move ARM semihosting code to shared directories
This commit renames two files which provide ARM semihosting support so
that they can be shared by other architectures:
1. target/arm/arm-semi.c -> hw/semihosting/common-semi.c
2. linux-user/arm/semihost.c -> linux-user/semihost.c
The build system was modified use a new config variable,
CONFIG_ARM_COMPATIBLE_SEMIHOSTING, which has been added to the ARM
softmmu and linux-user default configs. The contents of the source
files has not been changed in this patch.
Signed-off-by: Keith Packard <keithp@keithp.com>
[AJB: rename arm-compat-semi, select SEMIHOSTING]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210107170717.2098982-2-keithp@keithp.com>
Message-Id: <20210108224256.2321-13-alex.bennee@linaro.org>
Diffstat (limited to 'target/arm/meson.build')
-rw-r--r-- | target/arm/meson.build | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/arm/meson.build b/target/arm/meson.build index f5de2a7..15b936c 100644 --- a/target/arm/meson.build +++ b/target/arm/meson.build @@ -32,8 +32,6 @@ arm_ss.add(files( )) arm_ss.add(zlib) -arm_ss.add(when: 'CONFIG_TCG', if_true: files('arm-semi.c')) - arm_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c', 'kvm64.c'), if_false: files('kvm-stub.c')) arm_ss.add(when: 'TARGET_AARCH64', if_true: files( |