From: Haijun.Zhang Date: Thu, 10 Apr 2014 03:16:30 +0000 (+0800) Subject: Powerpc/mpc8536DS: Increase SPI/SD uboot Image size to 768K X-Git-Tag: v2025.01-rc5-pxa1908~15374^2~10 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=e2c9bc5ea6e0ff318d8e6ea27dc37826b6627a95;p=u-boot.git Powerpc/mpc8536DS: Increase SPI/SD uboot Image size to 768K u-boot binary size for Freescale mpc8536DS platforms is 512KB. This has been reached to upper limit of the platforms and causig linker error. So increase the u-boot binary size to 768KB. Signed-off-by: Haijun Zhang Reviewed-by: York Sun --- diff --git a/include/configs/MPC8536DS.h b/include/configs/MPC8536DS.h index faa5495cb4..f15e1626f0 100644 --- a/include/configs/MPC8536DS.h +++ b/include/configs/MPC8536DS.h @@ -31,13 +31,13 @@ #ifdef CONFIG_SDCARD #define CONFIG_RAMBOOT_SDCARD 1 -#define CONFIG_SYS_TEXT_BASE 0xf8f80000 +#define CONFIG_SYS_TEXT_BASE 0xf8f40000 #define CONFIG_RESET_VECTOR_ADDRESS 0xf8fffffc #endif #ifdef CONFIG_SPIFLASH #define CONFIG_RAMBOOT_SPIFLASH 1 -#define CONFIG_SYS_TEXT_BASE 0xf8f80000 +#define CONFIG_SYS_TEXT_BASE 0xf8f40000 #define CONFIG_RESET_VECTOR_ADDRESS 0xf8fffffc #endif