diff options
author | Kever Yang | 2024-01-24 15:51:10 +0800 |
---|---|---|
committer | Kever Yang | 2024-02-04 18:01:03 +0800 |
commit | 52e33533856952731314ea28a5f8b6c94d74f740 (patch) | |
tree | ef454ecf4e63b23092da8ec5d1bd6ed41b7702c4 /configs | |
parent | ce7ae9d2dbe1190153157bddfdefb121f09e1e3e (diff) |
configs: rockchip: rk3036: Fix CONFIG_SPL_STACK define
The CONFIG_SPL_STACK for rk3036 is removed in below patch, need to add
it back.
Fixes: f113d7d3034 ("Convert CONFIG_SPL_STACK to Kconfig")
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/evb-rk3036_defconfig | 1 | ||||
-rw-r--r-- | configs/kylin-rk3036_defconfig | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/configs/evb-rk3036_defconfig b/configs/evb-rk3036_defconfig index a5a4e362113..e21bea9d499 100644 --- a/configs/evb-rk3036_defconfig +++ b/configs/evb-rk3036_defconfig @@ -15,6 +15,7 @@ CONFIG_DEFAULT_DEVICE_TREE="rk3036-sdk" CONFIG_SPL_TEXT_BASE=0x10081000 CONFIG_ROCKCHIP_RK3036=y CONFIG_SPL_STACK_R_ADDR=0x80000 +CONFIG_SPL_STACK=0x10081fff CONFIG_DEBUG_UART_BASE=0x20068000 CONFIG_DEBUG_UART_CLOCK=24000000 CONFIG_SYS_LOAD_ADDR=0x60800800 diff --git a/configs/kylin-rk3036_defconfig b/configs/kylin-rk3036_defconfig index cb313a10a41..ed4f2ba5558 100644 --- a/configs/kylin-rk3036_defconfig +++ b/configs/kylin-rk3036_defconfig @@ -17,6 +17,7 @@ CONFIG_SPL_TEXT_BASE=0x10081000 CONFIG_ROCKCHIP_RK3036=y CONFIG_TARGET_KYLIN_RK3036=y CONFIG_SPL_STACK_R_ADDR=0x80000 +CONFIG_SPL_STACK=0x10081fff CONFIG_DEBUG_UART_BASE=0x20068000 CONFIG_DEBUG_UART_CLOCK=24000000 CONFIG_SYS_LOAD_ADDR=0x60800800 |