diff options
author | huang lin <hl@rock-chips.com> | 2015-11-17 14:20:10 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-12-01 08:07:22 -0700 |
commit | 8117803430d2f0280f245b64604f6cfcda26bd3e (patch) | |
tree | 84f853c67d79c6167a47418ee350dbd108b02e3a /arch/arm | |
parent | cc2244b8fa85b4a8af228617ed7566785dfb1728 (diff) | |
download | u-boot-imx-8117803430d2f0280f245b64604f6cfcda26bd3e.zip u-boot-imx-8117803430d2f0280f245b64604f6cfcda26bd3e.tar.gz u-boot-imx-8117803430d2f0280f245b64604f6cfcda26bd3e.tar.bz2 |
rockchip: move SYS_MALLOC_F_LEN to rk3288 own Kconfig
since different rockchip SOC have different size of SRAM,
So the size SYS_MALLOC_F_LEN may different, so move this
config to rk3288 own Kconfig
Signed-off-by: Lin Huang <hl@rock-chips.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-rockchip/Kconfig | 3 | ||||
-rw-r--r-- | arch/arm/mach-rockchip/rk3288/Kconfig | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig index 3f7dc8e..fa1f426 100644 --- a/arch/arm/mach-rockchip/Kconfig +++ b/arch/arm/mach-rockchip/Kconfig @@ -12,9 +12,6 @@ config ROCKCHIP_RK3288 config SYS_MALLOC_F default y -config SYS_MALLOC_F_LEN - default 0x800 - config SPL_DM default y diff --git a/arch/arm/mach-rockchip/rk3288/Kconfig b/arch/arm/mach-rockchip/rk3288/Kconfig index 4d0f1b5..d0a7276 100644 --- a/arch/arm/mach-rockchip/rk3288/Kconfig +++ b/arch/arm/mach-rockchip/rk3288/Kconfig @@ -19,6 +19,9 @@ config TARGET_CHROMEBOOK_JERRY config SYS_SOC default "rockchip" +config SYS_MALLOC_F_LEN + default 0x0800 + source "board/google/chromebook_jerry/Kconfig" source "board/firefly/firefly-rk3288/Kconfig" |