diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 03:25:40 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-22 12:45:32 -0400 |
commit | 6bac227a678613197bb5c36d45d1e1cbc22ae162 (patch) | |
tree | 5f2d15ea71af5028f8ede059f1ae8f8f12cf5be6 /cmd | |
parent | 1b330894bd40cb0d7ef37bb761d104820f794aae (diff) | |
download | u-boot-6bac227a678613197bb5c36d45d1e1cbc22ae162.tar.gz |
Convert CONFIG_CMD_KGDB to Kconfig
This converts the following to Kconfig:
CONFIG_CMD_KGDB
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 1dc8ba2d92..dc81913767 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1200,6 +1200,15 @@ config CMD_IRQ interrupts - enable or disable interrupts irqinfo - print device-specific interrupt information + +config CMD_KGDB + bool "kgdb - Allow debugging of U-Boot with gdb" + help + This enables a 'kgdb' command which allows gdb to connect to U-Boot + over a serial link for debugging purposes. This allows + single-stepping, inspecting variables, etc. This is supported only + on PowerPC at present. + endmenu config CMD_UBI |