From 47518d47a2044c2f407a34b0ad56106c2f0beeef Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Fri, 2 Dec 2022 11:14:12 +0000 Subject: [PATCH] logging: minimal: Change imply to select for printk This changes the minimal logging Kconfig to select printk rather than imply it, this is because if someone turns printk off, minimal footprint logging does not work, therefore it needs to be a requirement. Signed-off-by: Jamie McCrae --- subsys/logging/Kconfig.mode | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/logging/Kconfig.mode b/subsys/logging/Kconfig.mode index 10631a16566..6eb2b415118 100644 --- a/subsys/logging/Kconfig.mode +++ b/subsys/logging/Kconfig.mode @@ -27,7 +27,7 @@ config LOG_MODE_IMMEDIATE config LOG_MODE_MINIMAL bool "Minimal-footprint" - imply PRINTK + select PRINTK help Enable minimal logging implementation. This has very little footprint overhead on top of the printk() implementation for standard