diff options
author | Simon Glass <sjg@chromium.org> | 2019-09-25 08:56:28 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-10-08 13:57:45 +0800 |
commit | b51882d0079d3275bdb83ce49fdc8a90133f7f07 (patch) | |
tree | 3fdf9b80ff932dc134cc9703af20f1fb45ed6a54 /configs/evb-rk3288_defconfig | |
parent | 27084c03d36a7f0e4d7c1679761e81567f1d5442 (diff) | |
download | u-boot-b51882d0079d3275bdb83ce49fdc8a90133f7f07.tar.gz |
spl: Convert CONFIG_SPL_SIZE_LIMIT to hex
This is currently a decimal value which is not as convenient or
meaningful. Also U-Boot tends to use hex everywhere.
Convert this option to hex and add a comment for the size_check macro.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Acked-by: Bin Meng <bmeng.cn@gmail.com>
[bmeng: correct the typo in the commit title]
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'configs/evb-rk3288_defconfig')
-rw-r--r-- | configs/evb-rk3288_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/evb-rk3288_defconfig b/configs/evb-rk3288_defconfig index 7b0e908f71..043ee32bb4 100644 --- a/configs/evb-rk3288_defconfig +++ b/configs/evb-rk3288_defconfig @@ -4,7 +4,7 @@ CONFIG_SYS_TEXT_BASE=0x01000000 CONFIG_ROCKCHIP_RK3288=y CONFIG_TARGET_EVB_RK3288=y CONFIG_NR_DRAM_BANKS=1 -CONFIG_SPL_SIZE_LIMIT=307200 +CONFIG_SPL_SIZE_LIMIT=0x4b000 CONFIG_SPL_STACK_R_ADDR=0x80000 CONFIG_DEBUG_UART_BASE=0xff690000 CONFIG_DEBUG_UART_CLOCK=24000000 |