forked from OERV-BSP/u-boot
Add STM32MP23 support which is a cost optimized of STM32MP25. More details available at: https://www.st.com/en/microcontrollers-microprocessors/stm32mp2-series.html Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
28 lines
381 B
Plaintext
28 lines
381 B
Plaintext
if TARGET_ST_STM32MP23X
|
|
|
|
config SYS_BOARD
|
|
default "stm32mp2"
|
|
|
|
config SYS_VENDOR
|
|
default "st"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "stm32mp23_st_common"
|
|
|
|
source "board/st/common/Kconfig"
|
|
endif
|
|
|
|
if TARGET_ST_STM32MP25X
|
|
|
|
config SYS_BOARD
|
|
default "stm32mp2"
|
|
|
|
config SYS_VENDOR
|
|
default "st"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "stm32mp25_st_common"
|
|
|
|
source "board/st/common/Kconfig"
|
|
endif
|