[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 8/8] semihosting: Restrict to TCG
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v4 8/8] semihosting: Restrict to TCG |
Date: |
Wed, 17 Jul 2024 12:57:23 +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 v4 0/8] semihosting: Restrict to TCG, Philippe Mathieu-Daudé, 2024/07/17
- [PATCH v4 1/8] semihosting: Include missing 'gdbstub/syscalls.h' header, Philippe Mathieu-Daudé, 2024/07/17
- [PATCH v4 2/8] target/m68k: Add semihosting stub, Philippe Mathieu-Daudé, 2024/07/17
- [PATCH v4 3/8] target/mips: Add semihosting stub, Philippe Mathieu-Daudé, 2024/07/17
- [PATCH v4 4/8] target/m68k: Restrict semihosting to TCG, Philippe Mathieu-Daudé, 2024/07/17
- [PATCH v4 5/8] target/mips: Restrict semihosting to TCG, Philippe Mathieu-Daudé, 2024/07/17
- [PATCH v4 6/8] target/riscv: Restrict semihosting to TCG, Philippe Mathieu-Daudé, 2024/07/17
- [PATCH v4 7/8] target/xtensa: Restrict semihosting to TCG, Philippe Mathieu-Daudé, 2024/07/17
- [PATCH v4 8/8] semihosting: Restrict to TCG,
Philippe Mathieu-Daudé <=
- Re: [PATCH v4 0/8] semihosting: Restrict to TCG, Alex Bennée, 2024/07/17