99f2f2ad9e
We are about to enable the build without TCG, so CONFIG_SEMIHOSTING and CONFIG_ARM_COMPATIBLE_SEMIHOSTING cannot be unconditionally set in default.mak anymore. So reflect the change in a Kconfig. Instead of using semihosting/Kconfig, use a target-specific file, so that the change doesn't affect other architectures which might implement semihosting in a way compatible with KVM. The selection from ARM_v7M needs to be removed to avoid a cycle during parsing. Signed-off-by: Fabiano Rosas <farosas@suse.de> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20230426180013.14814-11-farosas@suse.de Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
14 lines
293 B
Plaintext
14 lines
293 B
Plaintext
config ARM
|
|
bool
|
|
|
|
config AARCH64
|
|
bool
|
|
select ARM
|
|
|
|
# This config exists just so we can make SEMIHOSTING default when TCG
|
|
# is selected without also changing it for other architectures.
|
|
config ARM_SEMIHOSTING
|
|
bool
|
|
default y if TCG && ARM
|
|
select ARM_COMPATIBLE_SEMIHOSTING
|