Files
u-boot/board/st/stm32mp2/Kconfig
Patrice Chotard fdd30ee308 ARM: stm32mp: Add STM32MP23 support
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>
2025-07-29 17:02:31 +02:00

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