From ad01a39903fbcd7464e0542d84fcc9116d9664fd Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Fri, 2 Dec 2022 11:14:12 +0000 Subject: [PATCH] [nrf fromlist] 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. Upstream PR: https://github.com/zephyrproject-rtos/zephyr/pull/52745 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