diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-05-05 00:59:28 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-05-05 00:59:28 +0200 |
commit | f149d8643e8ae12f49bcf536d256c338508280d5 (patch) | |
tree | f48407183fe7e5c44809c1587aaba2bf7c775491 | |
parent | 610cf3676ee7376e0a55419626a30414a7b20db2 (diff) | |
download | u-boot-imx-f149d8643e8ae12f49bcf536d256c338508280d5.zip u-boot-imx-f149d8643e8ae12f49bcf536d256c338508280d5.tar.gz u-boot-imx-f149d8643e8ae12f49bcf536d256c338508280d5.tar.bz2 |
Fix lowboot support on MCC200 board
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | include/configs/mcc200.h | 4 |
3 files changed, 7 insertions, 1 deletions
@@ -2,6 +2,8 @@ Changes since U-Boot 1.1.4: ====================================================================== +* Fix lowboot support on MCC200 board + * Coding Style cleanup * Write RTC seconds first to maintain settings integrity per @@ -326,7 +326,7 @@ mcc200_config \ mcc200_lowboot_config: unconfig @ >include/config.h @[ -z "$(findstring lowboot_,$@)" ] || \ - { echo "TEXT_BASE = 0xFE000000" >board/mcc200/config.tmp ; \ + { echo "TEXT_BASE = 0xFC000000" >board/mcc200/config.tmp ; \ echo "... with lowboot configuration" ; \ } @./mkconfig mcc200 ppc mpc5xxx mcc200 diff --git a/include/configs/mcc200.h b/include/configs/mcc200.h index 2b1c0d0..d8d63a1 100644 --- a/include/configs/mcc200.h +++ b/include/configs/mcc200.h @@ -172,6 +172,10 @@ #define CONFIG_ENV_OVERWRITE 1 /* allow modification of vendor params */ +#if TEXT_BASE == CFG_FLASH_BASE +#define CFG_LOWBOOT 1 +#endif + /* * Memory map */ |