mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 00:32:04 +02:00
rockchip: mkimage: force 2KB alignment for init_size
The Rockchip BootROM relies on init_size being aligned to 2KB (see https://lists.denx.de/pipermail/u-boot/2017-May/293268.html). This pads the image to 2KB both for SD card images and SPI images and uses a common symbolic constant for the alignment. Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
committed by
Simon Glass
parent
2fb371ff64
commit
ad972ac3d9
@@ -63,7 +63,7 @@ static int rkspi_check_image_type(uint8_t type)
|
||||
static int rkspi_vrec_header(struct image_tool_params *params,
|
||||
struct image_type_params *tparams)
|
||||
{
|
||||
int padding = rkcommon_vrec_header(params, tparams, 2048);
|
||||
int padding = rkcommon_vrec_header(params, tparams, RK_INIT_SIZE_ALIGN);
|
||||
/*
|
||||
* The file size has not been adjusted at this point (our caller will
|
||||
* eventually add the header/padding to the file_size), so we need to
|
||||
|
Reference in New Issue
Block a user