From 912c245bd5a5f3b4cd436074b6318cec0903c835 Mon Sep 17 00:00:00 2001 From: Seppo Ingalsuo Date: Mon, 18 Aug 2025 17:05:24 +0300 Subject: [PATCH] Audio: Template component: Add missing llext sources The build of template component as module fails because of wrong and missing file names for needed source files for build. Signed-off-by: Seppo Ingalsuo --- src/audio/template_comp/llext/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/audio/template_comp/llext/CMakeLists.txt b/src/audio/template_comp/llext/CMakeLists.txt index 9e97d91f28fc..f84bd6daf916 100644 --- a/src/audio/template_comp/llext/CMakeLists.txt +++ b/src/audio/template_comp/llext/CMakeLists.txt @@ -2,6 +2,8 @@ # SPDX-License-Identifier: Apache-2.0 sof_llext_build("template_comp" - SOURCES ../template_comp.c + SOURCES ../template.c + ../template-generic.c + ../template-ipc4.c LIB openmodules )