mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-10 01:06:59 +02:00
Introduce the code in mach-stm32mp and the configuration file stm32mp13_defconfig for the new STM32MP family. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
29 lines
382 B
Plaintext
29 lines
382 B
Plaintext
if TARGET_ST_STM32MP15x
|
|
|
|
config SYS_BOARD
|
|
default "stm32mp1"
|
|
|
|
config SYS_VENDOR
|
|
default "st"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "stm32mp15_st_common"
|
|
|
|
source "board/st/common/Kconfig"
|
|
endif
|
|
|
|
if TARGET_ST_STM32MP13x
|
|
|
|
config SYS_BOARD
|
|
default "stm32mp1"
|
|
|
|
config SYS_VENDOR
|
|
default "st"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "stm32mp13_st_common"
|
|
|
|
source "board/st/common/Kconfig"
|
|
|
|
endif
|