From f1fa7bb6e339f1f5c8552227f5fa0408a23e6a15 Mon Sep 17 00:00:00 2001 From: Tomasz Leman Date: Thu, 16 Apr 2026 17:56:43 +0200 Subject: [PATCH] init: core: Add log after first boot This patch is adding a single log message after secondary core is initialized. Motivation for that is to allow a simple way of testing that memory window logging is properly working on secondary cores as well. This is the simplest solution to allow testing in a simple and quick flow, without creating modules and pipelines on secondary cores. Signed-off-by: Tomasz Leman --- src/init/init.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/init/init.c b/src/init/init.c index d4f667dc9523..e8d374c810ad 100644 --- a/src/init/init.c +++ b/src/init/init.c @@ -154,6 +154,8 @@ __cold int secondary_core_init(struct sof *sof) trace_point(TRACE_BOOT_PLATFORM); + LOG_INF("init done"); + return err; }