mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
224d261a16
We want to have the same configuration defaults for the RK3368-uQ7
as for the RK3399-Q7: this change reduces the default env-size to
8KiB to ensure that it does not overlap the boot-payload on SD/MMC
configurations.
References: commit fe529e6597
("rockchip: rk3399-puma: reduce env size to 8kiB")
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
21 lines
308 B
Text
21 lines
308 B
Text
if TARGET_LION_RK3368
|
|
|
|
config SYS_BOARD
|
|
default "lion_rk3368"
|
|
|
|
config SYS_VENDOR
|
|
default "theobroma-systems"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "lion_rk3368"
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
|
|
config ENV_SIZE
|
|
default 0x2000
|
|
|
|
config ENV_OFFSET
|
|
default 0x3c000 if ENV_IS_IN_SPI_FLASH
|
|
|
|
endif
|