1# Copyright (c) 2024 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config SOC_FAMILY_ARM
5 bool
6
7config SOC_FAMILY_ARM64
8 bool
9
10config SOC_FAMILY
11 default "arm" if SOC_FAMILY_ARM
12 default "arm64" if SOC_FAMILY_ARM64
13
14rsource "*/Kconfig.soc"
15