rk3399: decrease 16KB from BSS section

the 16KB size is used for SPL code, it fixes compile issue:

section .bss VMA [00000000ff8e0000,00000000ff8e01bf] overlaps
section .u_boot_list VMA [00000000ff8df450,00000000ff8e0bf7]

Change-Id: I05b5b9c8b05825835d7d80f843c590d390abe482
Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
This commit is contained in:
Joseph Chen 2018-09-25 11:46:39 +08:00 committed by Jianhong Chen
parent f561125910
commit 72c44abc76
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@
#define CONFIG_SPL_TEXT_BASE 0xff8c2000
#define CONFIG_SPL_MAX_SIZE 0x30000 - 0x2000
/* BSS setup */
#define CONFIG_SPL_BSS_START_ADDR 0xff8e0000
#define CONFIG_SPL_BSS_MAX_SIZE 0x10000
#define CONFIG_SPL_BSS_START_ADDR 0xff8e4000
#define CONFIG_SPL_BSS_MAX_SIZE 0x10000 - 0x4000
#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */