From 60da499d7982527cf39ee5c1eebde13e2791f3f0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lothar=20Wa=C3=9Fmann?= Date: Fri, 9 Jan 2015 11:49:51 +0100 Subject: [PATCH] karo: tx6: change CONFIG_SYS_TEXT_BASE to accomodate boards with less than 256MiB memory The default address taken from the original Freescale BSP is beyond 256MiB. Thus modules with less than that amount of memory cannot work. Change the address to be inside the first memory bank for all sensible memory sizes. --- board/karo/tx6/config.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/board/karo/tx6/config.mk b/board/karo/tx6/config.mk index 4c374f3b04..3326141157 100644 --- a/board/karo/tx6/config.mk +++ b/board/karo/tx6/config.mk @@ -1,7 +1,5 @@ # stack is allocated below CONFIG_SYS_TEXT_BASE -CONFIG_SYS_TEXT_BASE := 0x27800000 -#CONFIG_SYS_TEXT_BASE := 0x17800000 -#CONFIG_SPL_TEXT_BASE := 0x00000000 +CONFIG_SYS_TEXT_BASE := 0x10100000 LOGO_BMP = logos/karo.bmp #PLATFORM_CPPFLAGS += -DDEBUG -- 2.39.2