Skip to content

Commit 3c2643c

Browse files
committed
smart_amp_test: use the correct loading type
Set "load_type" to 2 in TOML configuration, when building for LLEXT. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
1 parent f58e369 commit 3c2643c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/samples/audio/smart_amp_test.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
#ifndef LOAD_TYPE
2+
#define LOAD_TYPE "0"
3+
#endif
4+
15
REM # smart amp test module config
26
[[module.entry]]
37
name = "SMATEST"
48
uuid = "167A961E-8AE4-11EA-89F1-000C29CE1635"
59
affinity_mask = "0x1"
610
instance_count = "1"
711
domain_types = "0"
8-
load_type = "0"
12+
load_type = LOAD_TYPE
913
init_config = "1"
1014
module_type = "0xD"
1115
auto_start = "0"

src/samples/audio/smart_amp_test_llext/llext.toml.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <tools/rimage/config/platform.toml>
2+
#define LOAD_TYPE "2"
23
#include "../smart_amp_test.toml"
34
45
[module]

0 commit comments

Comments
 (0)