Browse Source
Adds include guards to prevent contamination of bleeding Kconfigs from irrelevent devices Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>pull/69687/head
36 changed files with 84 additions and 14 deletions
@ -1,4 +1,8 @@ |
|||||||
# Copyright (c) 2024 Nordic Semiconductor ASA |
# Copyright (c) 2024 Nordic Semiconductor ASA |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
if SOC_FAMILY_ANDES_V5 |
||||||
|
|
||||||
rsource "*/Kconfig" |
rsource "*/Kconfig" |
||||||
|
|
||||||
|
endif # SOC_FAMILY_ANDES_V5 |
||||||
|
@ -1,4 +1,8 @@ |
|||||||
# Copyright (c) 2024 Nordic Semiconductor ASA |
# Copyright (c) 2024 Nordic Semiconductor ASA |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
if SOC_FAMILY_ARM || SOC_FAMILY_ARM64 |
||||||
|
|
||||||
rsource "*/Kconfig" |
rsource "*/Kconfig" |
||||||
|
|
||||||
|
endif # SOC_FAMILY_ARM || SOC_FAMILY_ARM64 |
||||||
|
@ -1,4 +1,8 @@ |
|||||||
# Copyright (c) 2020 ITE Corporation. All Rights Reserved. |
# Copyright (c) 2020 ITE Corporation. All Rights Reserved. |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
if SOC_FAMILY_ITE_EC |
||||||
|
|
||||||
rsource "*/Kconfig" |
rsource "*/Kconfig" |
||||||
|
|
||||||
|
endif # SOC_FAMILY_ITE_EC |
||||||
|
@ -1,4 +1,8 @@ |
|||||||
# Copyright (c) 2020 ITE Corporation. All Rights Reserved. |
# Copyright (c) 2020 ITE Corporation. All Rights Reserved. |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
if SOC_FAMILY_ITE_EC |
||||||
|
|
||||||
rsource "*/Kconfig.defconfig.series" |
rsource "*/Kconfig.defconfig.series" |
||||||
|
|
||||||
|
endif # SOC_FAMILY_ITE_EC |
||||||
|
@ -1,5 +1,8 @@ |
|||||||
# Copyright (c) 2024 Nordic Semiconductor ASA |
# Copyright (c) 2024 Nordic Semiconductor ASA |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
if SOC_FAMILY_TI_K3 |
||||||
|
|
||||||
rsource "*/Kconfig" |
rsource "*/Kconfig" |
||||||
|
|
||||||
|
endif # SOC_FAMILY_TI_K3 |
||||||
|
@ -1,3 +1,7 @@ |
|||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
if SOC_FAMILY_TI_SIMPLELINK |
||||||
|
|
||||||
rsource "*/Kconfig.defconfig" |
rsource "*/Kconfig.defconfig" |
||||||
|
|
||||||
|
endif # SOC_FAMILY_TI_SIMPLELINK |
||||||
|
Loading…
Reference in new issue