From ad4e7f2db3d35e6e0d469e7b50032f9e73b9788e Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Thu, 6 Feb 2020 10:35:03 -0500 Subject: [PATCH] tracing: TRACING implies THREAD_NAME, STACK_INFO Tracing now implies THREAD_NAME and STACK_INFO. Signed-off-by: Anas Nashif --- subsys/tracing/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subsys/tracing/Kconfig b/subsys/tracing/Kconfig index b2283cd4c2f..6afb614e9df 100644 --- a/subsys/tracing/Kconfig +++ b/subsys/tracing/Kconfig @@ -7,6 +7,8 @@ DT_CHOSEN_Z_CONSOLE := zephyr,console config TRACING bool "Enabling Tracing" + imply THREAD_NAME + imply THREAD_STACK_INFO help Enable system tracing. This requires a backend such as SEGGER Systemview to be enabled as well.