mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
c67ca25dfc
Add a configuration file "stm32mp15_st_common.h" to handle the STMicroelectronics boards configuration and rename stm32mp1.h to "stm32mp15_common.h" to handle the generic STM32MP15x series configuration. The configuration file "dh_stm32mp1.h" is also renamed to "stm32mp15_dh_dhcom" for the configuration of board based on the dhelectronics STM32MP15x SOM. In the STMicroelectronics board configuration the default bootcmd "bootcmd_stm32mp" is updated to only select the extlinux file found on SD-Card on STM32MP15x EV1 for boot from NOR device. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
22 lines
395 B
Text
22 lines
395 B
Text
if TARGET_DH_STM32MP1_PDK2
|
|
|
|
config SYS_BOARD
|
|
default "dh_stm32mp1"
|
|
|
|
config SYS_VENDOR
|
|
default "dhelectronics"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "stm32mp15_dh_dhsom"
|
|
|
|
config ENV_SECT_SIZE
|
|
default 0x10000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
config ENV_OFFSET
|
|
default 0x1E0000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
config ENV_OFFSET_REDUND
|
|
default 0x1F0000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
source "board/st/common/Kconfig"
|
|
endif
|