mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
rockchip: Add max spl size & spl header configs
Our chips may have different max spl size and spl header, so we need to add configs for that. Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com> Acked-by: Simon Glass <sjg@chromium.org> Dropped CONFIG_ROCKCHIP_MAX_SPL_SIZE from rk3288_common.h, Added $(if...) to tools/Makefile to fix widespread build breakage Signed-off-by: Simon Glass <sjg@chromium.org> Series-changes: 8 - Drop CONFIG_ROCKCHIP_MAX_SPL_SIZE from rk3288_common.h, - Add $(if...) to tools/Makefile to fix widespread build breakage
This commit is contained in:
parent
d8b597823b
commit
6ae5860942
9 changed files with 40 additions and 8 deletions
|
@ -50,7 +50,7 @@ int rkcommon_set_header(void *buf, uint file_size)
|
|||
{
|
||||
struct header0_info *hdr;
|
||||
|
||||
if (file_size > RK_MAX_CODE1_SIZE)
|
||||
if (file_size > CONFIG_ROCKCHIP_MAX_SPL_SIZE)
|
||||
return -ENOSPC;
|
||||
|
||||
memset(buf, '\0', RK_CODE1_OFFSET * RK_BLK_SIZE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue