71b522cfdd
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>
12 lines
289 B
Plaintext
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"
|