mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
4048e171d2
Move 2 ENV configuration flags in board Kconfig - CONFIG_ENV_SECT_SIZE - CONFIG_ENV_OFFSET Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
18 lines
263 B
Text
18 lines
263 B
Text
if TARGET_STM32MP1
|
|
|
|
config SYS_BOARD
|
|
default "stm32mp1"
|
|
|
|
config SYS_VENDOR
|
|
default "st"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "stm32mp1"
|
|
|
|
config ENV_SECT_SIZE
|
|
default 0x40000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
config ENV_OFFSET
|
|
default 0x280000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
endif
|