diff options
author | Dennis Gilmore <dennis@ausil.us> | 2020-12-08 21:07:38 -0600 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2021-01-27 07:25:39 +0100 |
commit | 9c690314dba9a2860a97f56e6e57f63c8513ddba (patch) | |
tree | ac24819478cbff98f836334c877e46822ee01a54 /board | |
parent | 827bed445682e711e53b0bd909316f61a8f23d58 (diff) | |
download | u-boot-9c690314dba9a2860a97f56e6e57f63c8513ddba.zip u-boot-9c690314dba9a2860a97f56e6e57f63c8513ddba.tar.gz u-boot-9c690314dba9a2860a97f56e6e57f63c8513ddba.tar.bz2 |
ARM: mvebu: ClearFog make sure that SATA and UART images are buildable
SATA and UART ClearFog imaages are not buildable as ENV_SECT_SIZE is not defined
set values for both possible targets
Signed-off-by: Dennis Gilmore <dennis@ausil.us>
Diffstat (limited to 'board')
-rw-r--r-- | board/solidrun/clearfog/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/solidrun/clearfog/Kconfig b/board/solidrun/clearfog/Kconfig index e8c3f53..cf95258 100644 --- a/board/solidrun/clearfog/Kconfig +++ b/board/solidrun/clearfog/Kconfig @@ -50,9 +50,9 @@ config ENV_OFFSET config ENV_SECT_SIZE hex "Environment Sector-Size" # Use SPI flash erase block size of 4 KiB - default 0x1000 if MVEBU_SPL_BOOT_DEVICE_SPI + default 0x1000 if MVEBU_SPL_BOOT_DEVICE_SPI || MVEBU_SPL_BOOT_DEVICE_SATA # Use optimistic 64 KiB erase block, will vary between actual media - default 0x10000 if MVEBU_SPL_BOOT_DEVICE_MMC + default 0x10000 if MVEBU_SPL_BOOT_DEVICE_MMC || MVEBU_SPL_BOOT_DEVICE_UART config SYS_SPI_U_BOOT_OFFS hex "address of u-boot payload in SPI flash" |