Skip to content

Commit cfa3b07

Browse files
serhiy-katsyuba-intelkv2019i
authored andcommitted
debug: Fix missing tester.toml include
tester.toml should be included by the platform's *.toml.h file in order for the tester module to be functional as a builtin module. Before this fix, the tester module only worked on MTL as a builtin and as an LLEXT module on LNL, PTL, WCL. And not functional at all on NVL. Signed-off-by: Serhiy Katsyuba <serhiy.katsyuba@intel.com>
1 parent 3652911 commit cfa3b07

4 files changed

Lines changed: 16 additions & 0 deletions

File tree

tools/rimage/config/lnl.toml.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@
3838

3939
index = __COUNTER__
4040

41+
#if defined(CONFIG_COMP_TESTER) || defined(LLEXT_FORCE_ALL_MODULAR)
42+
#include <debug/tester/tester.toml>
43+
#endif
44+
4145
#if defined(CONFIG_COMP_MIXIN_MIXOUT) || defined(LLEXT_FORCE_ALL_MODULAR)
4246
#include <audio/mixin_mixout/mixin_mixout.toml>
4347
#endif

tools/rimage/config/nvl.toml.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ auto_start = "0"
2424

2525
index = __COUNTER__
2626

27+
#if defined(CONFIG_COMP_TESTER)
28+
#include <debug/tester/tester.toml>
29+
#endif
30+
2731
#ifdef CONFIG_COMP_MIXIN_MIXOUT
2832
#include <audio/mixin_mixout/mixin_mixout.toml>
2933
#endif

tools/rimage/config/ptl.toml.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ auto_start = "0"
3838

3939
index = __COUNTER__
4040

41+
#if defined(CONFIG_COMP_TESTER) || defined(LLEXT_FORCE_ALL_MODULAR)
42+
#include <debug/tester/tester.toml>
43+
#endif
44+
4145
#if defined(CONFIG_COMP_MIXIN_MIXOUT) || defined(LLEXT_FORCE_ALL_MODULAR)
4246
#include <audio/mixin_mixout/mixin_mixout.toml>
4347
#endif

tools/rimage/config/wcl.toml.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ auto_start = "0"
3838

3939
index = __COUNTER__
4040

41+
#if defined(CONFIG_COMP_TESTER) || defined(LLEXT_FORCE_ALL_MODULAR)
42+
#include <debug/tester/tester.toml>
43+
#endif
44+
4145
#if defined(CONFIG_COMP_MIXIN_MIXOUT) || defined(LLEXT_FORCE_ALL_MODULAR)
4246
#include <audio/mixin_mixout/mixin_mixout.toml>
4347
#endif

0 commit comments

Comments
 (0)