diff options
author | Jens Scharsig (BuS Elektronik) <esw@bus-elektronik.de> | 2012-11-20 02:06:25 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-12-19 15:51:58 -0700 |
commit | 46dc5bcade4e6d26dfe44baf644c8dca70717917 (patch) | |
tree | 655f251244ca82e5c10a10810fc45f3034ebb19d /include | |
parent | 92ace272d06cec1d7f1533bb9edf914fb5845fba (diff) | |
download | u-boot-46dc5bcade4e6d26dfe44baf644c8dca70717917.zip u-boot-46dc5bcade4e6d26dfe44baf644c8dca70717917.tar.gz u-boot-46dc5bcade4e6d26dfe44baf644c8dca70717917.tar.bz2 |
coldfire: eb_cpu5282: fix: boot from internal flash
* By a sequence of unfavorable conditions in the config header file, the eb_cpu5282
booting from internal stopped after relocation. Blame it is a faulty value of
CONFIG_SYS_MONITOR_BASE. This patch fix this by replace the wrong condition in
config header with option in board.cfg
Signed-off-by: Jens Scharsig (BuS Elektronik) <esw@bus-elektronik.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/eb_cpu5282.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/configs/eb_cpu5282.h b/include/configs/eb_cpu5282.h index 5a0d321..459f568 100644 --- a/include/configs/eb_cpu5282.h +++ b/include/configs/eb_cpu5282.h @@ -168,14 +168,6 @@ #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_SDRAM_BASE0 #define CONFIG_SYS_SDRAM_SIZE CONFIG_SYS_SDRAM_SIZE0 -/* If M5282 port is fully implemented the monitor base will be behind - * the vector table. */ -#if (CONFIG_SYS_TEXT_BASE != CONFIG_SYS_INT_FLASH_BASE) -#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_TEXT_BASE + 0x400) -#else -#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_TEXT_BASE + 0x418) /* 24 Byte for CFM-Config */ -#endif - #define CONFIG_SYS_MONITOR_LEN 0x20000 #define CONFIG_SYS_MALLOC_LEN (256 << 10) #define CONFIG_SYS_BOOTPARAMS_LEN 64*1024 |