zephyr/tests/kernel/mp/Kconfig
Daniel Leung 71b522cfdd tests: kernel/mp: move CONFIG_KERNEL_COHERENCE to Kconfig
This moves CONFIG_KERNEL_COHERENCE from prj.conf to Kconfig.
This gets rid of the cmake warning where CONFIG_KERNEL_COHERENCE
is assigned the value 'y' but gets the value ''. This is simply
done to avoid confusion when running the test manually.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
2023-06-21 13:59:36 -04:00

12 lines
289 B
Plaintext

# Copyright (c) 2023 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
# Must have this on where available, otherwise the linker will place
# the shared variables in cached/incoherent memory.
config KERNEL_COHERENCE
bool
default y if ARCH_HAS_COHERENCE
source "Kconfig.zephyr"