[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 5/5] semihosting: Restrict to TCG
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v3 5/5] semihosting: Restrict to TCG |
Date: |
Mon, 10 Jun 2024 16:58:07 +0200 |
Semihosting currently uses the TCG probe_access API.
It is pointless to have it in the binary when TCG isn't.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
semihosting/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/semihosting/Kconfig b/semihosting/Kconfig
index eaf3a20ef5..fbe6ac87f9 100644
--- a/semihosting/Kconfig
+++ b/semihosting/Kconfig
@@ -1,6 +1,7 @@
config SEMIHOSTING
bool
+ depends on TCG
config ARM_COMPATIBLE_SEMIHOSTING
bool
--
2.41.0
- [PATCH v3 0/5] semihosting: Restrict to TCG, Philippe Mathieu-Daudé, 2024/06/10
- [PATCH v3 1/5] target/m68k: Restrict semihosting to TCG, Philippe Mathieu-Daudé, 2024/06/10
- [PATCH v3 2/5] target/xtensa: Restrict semihosting to TCG, Philippe Mathieu-Daudé, 2024/06/10
- [PATCH v3 3/5] target/mips: Restrict semihosting to TCG, Philippe Mathieu-Daudé, 2024/06/10
- [PATCH v3 4/5] target/riscv: Restrict semihosting to TCG, Philippe Mathieu-Daudé, 2024/06/10
- [PATCH v3 5/5] semihosting: Restrict to TCG,
Philippe Mathieu-Daudé <=
- Re: [PATCH v3 0/5] semihosting: Restrict to TCG, Alex Bennée, 2024/06/11