From: huang lin Date: Tue, 17 Nov 2015 06:20:10 +0000 (+0800) Subject: rockchip: move SYS_MALLOC_F_LEN to rk3288 own Kconfig X-Git-Tag: v2016.01-rc2~69 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8117803430d2f0280f245b64604f6cfcda26bd3e;p=oweals%2Fu-boot.git 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 Acked-by: Simon Glass --- diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig index 3f7dc8e19b..fa1f426753 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 4d0f1b5191..d0a72767c8 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"