nuttx-apps/system/debugpoint/Kconfig
Huang Qi 2f5dc9c24d system: Rename debug to debugpoint
Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
2024-09-08 21:41:23 +08:00

34 lines
787 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_DEBUGPOINT
tristate "Debugpoint utility"
default n
depends on ARCH_HAVE_DEBUG
depends on LIB_GDBSTUB
---help---
Enable the DEBUGPOINT test program. It is a simple
utility for testing the debug point support and
add debug points to the system by command line.
if SYSTEM_DEBUGPOINT
config SYSTEM_DEBUGPOINT_PROGNAME
string "Program name"
default "debugpoint"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config SYSTEM_DEBUGPOINT_PRIORITY
int "Task priority"
default 100
config SYSTEM_DEBUGPOINT_STACKSIZE
int "Stack size"
default DEFAULT_TASK_STACKSIZE
endif