During HWMv2 migration, non-ported SoCs were placed in a 'soc_legacy' folder and sourced from there instead of 'soc' folder. Remove the no-longer needed soc_legacy folder. CMake oot SoCs in old hardware model are sourced from '<soc-root>/soc/<arch>/<soc-path>' which has always been the case, also before HWMv2. Remove the 'osource "soc/soc_legacy/...' generation in Kconfig, because the source is relative to Zephyr base. All SoCs in Zephyr repository has been ported to the new hardware model and therefore there is no need for this line. Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
11 lines
287 B
Text
11 lines
287 B
Text
# Copyright (c) 2023 Nordic Semiconductor ASA
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
choice
|
|
prompt "SoC/CPU/Configuration Selection"
|
|
|
|
# This loads custom SoC root Kconfig (only available if custom SoC root are defined)
|
|
osource "$(KCONFIG_BINARY_DIR)/soc/Kconfig.soc.choice"
|
|
|
|
endchoice
|