summaryrefslogtreecommitdiff
path: root/src/Kconfig
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-11-04 09:33:04 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-03-03 07:45:23 +0000
commit8e9801380b57bb76bdc2a1f71e48c1605f881d3e (patch)
tree822c30459f533f94d57af8be62c9c3a9193b6f12 /src/Kconfig
parent2f3c37bd6266dba75498f1f629d42a2886dbc756 (diff)
downloadcoreboot-8e9801380b57bb76bdc2a1f71e48c1605f881d3e.tar.xz
Kconfig: Have GDB_STUB depend on DRIVERS_UART
There is no reason to hide the GDB_STUB option when CONSOLE_SERIAL is not set. Change-Id: Icbf9a1ac0e617939cafa3d66774bbd467dc01cbc Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36604 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/Kconfig')
-rw-r--r--src/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 16bc4ab524..d92bfd6769 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -764,7 +764,7 @@ comment "General Debug Settings"
config GDB_STUB
bool "GDB debugging support"
default n
- depends on CONSOLE_SERIAL
+ depends on DRIVERS_UART
help
If enabled, you will be able to set breakpoints for gdb debugging.
See src/arch/x86/lib/c_start.S for details.