diff options
author | Keith Packard | 2021-01-08 23:42:48 +0100 |
---|---|---|
committer | Alex Bennée | 2021-01-18 11:05:06 +0100 |
commit | 56b5170c87ee3e30221eea7425c2fc4f0cc7d4a3 (patch) | |
tree | 7d41a782437039530aa5e5c734785f88cd2bbffc /default-configs/devices/arm-softmmu.mak | |
parent | target/arm: use official org.gnu.gdb.aarch64.sve layout for registers (diff) | |
download | qemu-56b5170c87ee3e30221eea7425c2fc4f0cc7d4a3.tar.gz qemu-56b5170c87ee3e30221eea7425c2fc4f0cc7d4a3.tar.xz qemu-56b5170c87ee3e30221eea7425c2fc4f0cc7d4a3.zip |
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 'default-configs/devices/arm-softmmu.mak')
-rw-r--r-- | default-configs/devices/arm-softmmu.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/default-configs/devices/arm-softmmu.mak b/default-configs/devices/arm-softmmu.mak index 08a32123b4..0500156a0c 100644 --- a/default-configs/devices/arm-softmmu.mak +++ b/default-configs/devices/arm-softmmu.mak @@ -42,4 +42,5 @@ CONFIG_FSL_IMX25=y CONFIG_FSL_IMX7=y CONFIG_FSL_IMX6UL=y CONFIG_SEMIHOSTING=y +CONFIG_ARM_COMPATIBLE_SEMIHOSTING=y CONFIG_ALLWINNER_H3=y |