nuttx-apps/system/trace/Kconfig
Xiang Xiao 4e6041a46c system: Change DRIVER_NOTExxx to DRIVERS_NOTExxx
follow the kernel side change: https://github.com/apache/nuttx/pull/8531

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2023-02-20 14:30:57 +08:00

31 lines
633 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_TRACE
tristate "Trace command"
default n
depends on DRIVERS_NOTECTL
---help---
Enable support for the trace command.
if SYSTEM_TRACE
config SYSTEM_TRACE_PROGNAME
string "Trace program name"
default "trace"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config SYSTEM_TRACE_PRIORITY
int "Trace task priority"
default 100
config SYSTEM_TRACE_STACKSIZE
int "Trace stack size"
default DEFAULT_TASK_STACKSIZE
endif