Skip to content
Snippets Groups Projects
Commit 17d704eb authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Cleanup for release 1.1.0

parent 7e780369
Branches
Tags
No related merge requests found
...@@ -187,7 +187,7 @@ endif ...@@ -187,7 +187,7 @@ endif
######################################################################### #########################################################################
unconfig: unconfig:
rm -f include/config.h include/config.mk board/*/config.tmp @rm -f include/config.h include/config.mk board/*/config.tmp
#======================================================================== #========================================================================
# PowerPC # PowerPC
...@@ -217,13 +217,17 @@ icecube_5200_config \ ...@@ -217,13 +217,17 @@ icecube_5200_config \
IceCube_5200_config \ IceCube_5200_config \
IceCube_5100_config: unconfig IceCube_5100_config: unconfig
@ >include/config.h @ >include/config.h
@[ -z "$(findstring LOWBOOT,$@)" ] || \ @[ -z "$(findstring LOWBOOT_,$@)" ] || \
{ echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \ { if [ "$(findstring DDR,$@)" ] ; \
then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
fi ; \
echo "... with LOWBOOT configuration" ; \ echo "... with LOWBOOT configuration" ; \
} }
@[ -z "$(findstring LOWBOOT08,$@)" ] || \ @[ -z "$(findstring LOWBOOT08,$@)" ] || \
{ echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \ { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
echo "... with 8 MB flash only" ; \ echo "... with 8 MB flash only" ; \
echo "... with LOWBOOT configuration" ; \
} }
@[ -z "$(findstring DDR,$@)" ] || \ @[ -z "$(findstring DDR,$@)" ] || \
{ echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \ { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
......
...@@ -84,7 +84,9 @@ void nand_init (void); ...@@ -84,7 +84,9 @@ void nand_init (void);
static char *failed = "*** failed ***\n"; static char *failed = "*** failed ***\n";
#if defined(CONFIG_OXC) || defined(CONFIG_PCU_E) || defined(CONFIG_RMU)
extern flash_info_t flash_info[]; extern flash_info_t flash_info[];
#endif
#include <environment.h> #include <environment.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment