This is the bare minimum and includes the SoC, pinctrl, flash and devicetree. I had to include the flash driver that early because I couldn't make Zephyr compile without flash driver nodes in the device tree. Signed-off-by: Michael Zimmermann <michael.zimmermann@grandcentrix.net>
10 lines
305 B
Text
10 lines
305 B
Text
# Copyright (c) 2017 Christian Taedcke
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SOC_FAMILY
|
|
default "silabs_s0" if SOC_FAMILY_SILABS_S0
|
|
default "silabs_s1" if SOC_FAMILY_SILABS_S1
|
|
default "silabs_s2" if SOC_FAMILY_SILABS_S2
|
|
default "silabs_sim3" if SOC_FAMILY_SILABS_SIM3
|
|
|
|
rsource "*/Kconfig.soc"
|