From 29f66ab8235cca9e92ec3a6d2b785cb63fc1041f Mon Sep 17 00:00:00 2001 From: Guennadi Liakhovetski Date: Mon, 12 May 2025 11:49:20 +0200 Subject: [PATCH] gdb: fix building without UART support GDB can now also be built without UART support, e.g. on Xtensa it can use a memory window backend. Update the Kconfig dependency to avoid build failures. Signed-off-by: Guennadi Liakhovetski --- subsys/debug/gdbstub/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/debug/gdbstub/Kconfig b/subsys/debug/gdbstub/Kconfig index 64cb4fb0bd7..f7002cb05d7 100644 --- a/subsys/debug/gdbstub/Kconfig +++ b/subsys/debug/gdbstub/Kconfig @@ -4,7 +4,7 @@ menuconfig GDBSTUB bool "GDB remote serial protocol support [EXPERIMENTAL]" depends on ARCH_HAS_GDBSTUB - select UART_USE_RUNTIME_CONFIGURE + select UART_USE_RUNTIME_CONFIGURE if SERIAL select EXPERIMENTAL help This option enable support the target using GDB, or any other