diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-02-07 16:38:07 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2024-02-09 17:52:30 +0000 |
commit | 2df1eb2756658dc2c0e9d739cec6929e74e6c3b0 (patch) | |
tree | 9e2d9ace451f1ebaafde48e4ad55fba5ef266eba /target | |
parent | 1fed4cd04d80a9d808319e1cd05ff247b3eedeed (diff) |
kconfig: use "select" to enable semihosting
Just like all other dependencies, these can be expressed in Kconfig
files rather than in the default configurations.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20240129115809.1039924-1-pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20240207163812.3231697-10-alex.bennee@linaro.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/m68k/Kconfig | 1 | ||||
-rw-r--r-- | target/mips/Kconfig | 1 | ||||
-rw-r--r-- | target/nios2/Kconfig | 1 | ||||
-rw-r--r-- | target/riscv/Kconfig | 2 | ||||
-rw-r--r-- | target/xtensa/Kconfig | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/target/m68k/Kconfig b/target/m68k/Kconfig index 23debad519..9eae71486f 100644 --- a/target/m68k/Kconfig +++ b/target/m68k/Kconfig @@ -1,2 +1,3 @@ config M68K bool + select SEMIHOSTING diff --git a/target/mips/Kconfig b/target/mips/Kconfig index 6adf145354..eb19c94c7d 100644 --- a/target/mips/Kconfig +++ b/target/mips/Kconfig @@ -1,5 +1,6 @@ config MIPS bool + select SEMIHOSTING config MIPS64 bool diff --git a/target/nios2/Kconfig b/target/nios2/Kconfig index 1529ab8950..c65550c861 100644 --- a/target/nios2/Kconfig +++ b/target/nios2/Kconfig @@ -1,2 +1,3 @@ config NIOS2 bool + select SEMIHOSTING diff --git a/target/riscv/Kconfig b/target/riscv/Kconfig index b9e5932f13..adb7de3f37 100644 --- a/target/riscv/Kconfig +++ b/target/riscv/Kconfig @@ -1,5 +1,7 @@ config RISCV32 bool + select ARM_COMPATIBLE_SEMIHOSTING # for do_common_semihosting() config RISCV64 bool + select ARM_COMPATIBLE_SEMIHOSTING # for do_common_semihosting() diff --git a/target/xtensa/Kconfig b/target/xtensa/Kconfig index a3c8dc7f6d..5e46049262 100644 --- a/target/xtensa/Kconfig +++ b/target/xtensa/Kconfig @@ -1,2 +1,3 @@ config XTENSA bool + select SEMIHOSTING |