mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
9828ed6259
Puma SoMs have a 4 MB SPI NOR flash. Therefore we can move the environment to the end of the flash (4 MiB - 16 kiB) in order to not overlap with SPL. Reported-by: Jakob Unterwurzacher <jakob.unterwurzacher@theobroma-systems.com> Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
21 lines
309 B
Text
21 lines
309 B
Text
if TARGET_PUMA_RK3399
|
|
|
|
config SYS_BOARD
|
|
default "puma_rk3399"
|
|
|
|
config SYS_VENDOR
|
|
default "theobroma-systems"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "puma_rk3399"
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
|
|
config ENV_SIZE
|
|
default 0x2000
|
|
|
|
config ENV_OFFSET
|
|
default 0x3fc000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
endif
|