Fixes the Kconfig name of this so that it matches the value from soc.yml, this has not been deprecated because this SoC is a virtual SoC used only with the boards in zephyr meaning it should not cause any breakage of out-of-tree boards Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
13 lines
534 B
CMake
13 lines
534 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(arm_mpu_pxn)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|
|
zephyr_linker_sources_ifdef(CONFIG_SOC_CORSTONE300 RAM_SECTIONS mps3_corstone300.ld)
|
|
zephyr_linker_sources_ifdef(CONFIG_SOC_CORSTONE310 RAM_SECTIONS mps3_corstone310.ld)
|
|
zephyr_linker_sources_ifdef(CONFIG_SOC_CORSTONE315 RAM_SECTIONS mps4_corstone315.ld)
|
|
zephyr_linker_sources_ifdef(CONFIG_SOC_CORSTONE320 RAM_SECTIONS mps4_corstone320.ld)
|