diff --git a/CHANGELOG b/CHANGELOG
index c774dd0525eb4e58b450794d88bfd419978aa2f4..a491ec060e9f8b58aa2189c54bfb0b2e65273783 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/Makefile b/Makefile
index 74e94749fcb89b169edf76b34c01dad8f1f3000b..6e24341c5255775c85d210e9b32ddf56ee06b0e9 100644
--- a/Makefile
+++ b/Makefile
@@ -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 2b1c0d00cb9c221b2e141d516add037f82fb87e7..d8d63a112ce91a34a643783b299a84c6da289833 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
  */