From 49d026a9439591514c04aca8d28bda5a2f77f353 Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Fri, 3 Nov 2023 16:46:17 +0100 Subject: [PATCH] mk: config.mk: describe CFG_WITH_STATS Adds a description for CFG_WITH_STATS and explicitly states that the config switch is default disabled. Acked-by: Jerome Forissier Reviewed-by: Jens Wiklander Signed-off-by: Etienne Carriere --- mk/config.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mk/config.mk b/mk/config.mk index 9cff8c9e5f1..8896165256f 100644 --- a/mk/config.mk +++ b/mk/config.mk @@ -553,6 +553,10 @@ CFG_DRIVERS_CLK_EARLY_PROBE ?= n $(call force,CFG_DRIVERS_DT_RECURSIVE_PROBE,n,Mandated by CFG_DT_DRIVER_EMBEDDED_TEST) endif +# CFG_WITH_STATS when enabled embeds PTA statistics service to allow non-secure +# clients to retrieve debug and statistics information on core and loaded TAs. +CFG_WITH_STATS ?= n + # CFG_DRIVERS_DT_RECURSIVE_PROBE when enabled forces a recursive subnode # parsing in the embedded DTB for driver probing. The alternative is # an exploration based on compatible drivers found. It is default disabled.