Skip to content

Commit 43912a7

Browse files
marc-hblgirdwood
authored andcommitted
native_sim_libfuzzer.conf: override some incompatible hardware options
Override incompatible options CONFIG_SMP_BOOT_DELAY and CONFIG_SCHED_CPU_MASK_PIN_ONLY found in `sof/app/prj.conf` to silence build time warnings. Strange why these are in `app/prj.conf` but not our problem here. ``` warning: SCHED_CPU_MASK_PIN_ONLY (defined at kernel/Kconfig:139) was assigned the value 'y' but got the value 'n'. Check these unsatisfied dependencies: SMP (=n). warning: SMP_BOOT_DELAY (defined at kernel/Kconfig.smp:32) was assigned the value 'y' but got the value 'n'. Check these unsatisfied dependencies: SMP (=n). ``` Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent 847b2ae commit 43912a7

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

app/boards/native_sim_libfuzzer.conf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ CONFIG_ZEPHYR_NATIVE_DRIVERS=y
99
CONFIG_ARCH_POSIX_LIBFUZZER=y
1010
CONFIG_ZEPHYR_POSIX_FUZZ_TICKS=100
1111
CONFIG_ASAN=y
12+
13+
# Override incompatible options found in sof/app/prj.conf
14+
# to silence build time warnings
15+
# (strange why these are in app/prj.conf but not our problem here)
16+
CONFIG_SMP_BOOT_DELAY=n
17+
CONFIG_SCHED_CPU_MASK_PIN_ONLY=n

0 commit comments

Comments
 (0)