From: Vitaly Andrianov Date: Mon, 28 Mar 2016 19:15:59 +0000 (-0400) Subject: configs: ti_armv7_keystone2: make SYS_TEXT_BASE configurable at build time X-Git-Tag: v2016.05-rc1~73 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=27ce6965389fd2ee2104f3c0d75695b34a232f45;p=oweals%2Fu-boot.git configs: ti_armv7_keystone2: make SYS_TEXT_BASE configurable at build time U-boot for general purpose KS2 devices is loaded to the beginning of the internal memory (0x0c000000). Secure devices uses this memory and CONFIG_SYS_TEXT_BASE has to be different for those devices. This commit make this configurable at build time by giving CONFIG_SYS_TEXT_BASE as a command line definition to make command. Signed-off-by: Vitaly Andrianov --- diff --git a/include/configs/ti_armv7_keystone2.h b/include/configs/ti_armv7_keystone2.h index 6a3beac59e..41185a1597 100644 --- a/include/configs/ti_armv7_keystone2.h +++ b/include/configs/ti_armv7_keystone2.h @@ -20,7 +20,9 @@ /* SoC Configuration */ #define CONFIG_ARCH_CPU_INIT #define CONFIG_SYS_ARCH_TIMER +#ifndef CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_TEXT_BASE 0x0c000000 +#endif #define CONFIG_SPL_TARGET "u-boot-spi.gph" #define CONFIG_SYS_DCACHE_OFF