1# Copyright (c) 2023 Nordic Semiconductor ASA 2 3# SPDX-License-Identifier: Apache-2.0 4 5config SOC 6 string 7 help 8 SoC name. The value of this setting must be defined by the selected 9 SoC for hw model v2. 10 11config SOC_SERIES 12 string 13 help 14 SoC series. The value of this setting must be defined by the selected 15 SoC if the SoC belongs to a common series. 16 17config SOC_FAMILY 18 string 19 help 20 SoC family. The value of this setting must be defined by the selected 21 SoC if the SoC belongs to a SoC family. Usually a SoC family also 22 indicates the vendor of the SoC. 23 24# This loads custom SoC root Kconfig (only available if custom SoC root are defined) 25osource "$(KCONFIG_BINARY_DIR)/soc/Kconfig.soc.arch" 26