diff options
author | wdenk <wdenk> | 2003-11-07 13:42:26 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-11-07 13:42:26 +0000 |
commit | 5cf9da4821db0b6d86d8bbb74af86a0303063201 (patch) | |
tree | 7173b1bb9eb0611765921aee5312a7c4d9ac67ad /Makefile | |
parent | b13fb01a62708492cae4b33c4d6fa9ae127905f4 (diff) | |
download | u-boot-imx-5cf9da4821db0b6d86d8bbb74af86a0303063201.zip u-boot-imx-5cf9da4821db0b6d86d8bbb74af86a0303063201.tar.gz u-boot-imx-5cf9da4821db0b6d86d8bbb74af86a0303063201.tar.bz2 |
* Patch by Bernhard Kuhn, 28 Oct 2003:
Add low boot support for MPC5200
* Fix problem with dual PCMCIA support (NSCU)
* Fix MPC5200 I2C initialization function
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -203,11 +203,21 @@ cmi_mpc5xx_config: unconfig ######################################################################### ## MPC5xxx Systems ######################################################################### -MPC5200LITE \ -icecube_5200_config \ -IceCube_5200_config \ +MPC5200LITE_config \ +MPC5200LITE_LOWBOOT_config \ +MPC5200LITE_LOWBOOT08_config \ +icecube_5200_config \ +IceCube_5200_config \ IceCube_5100_config: unconfig @ >include/config.h + @[ -z "$(findstring LOWBOOT,$@)" ] || \ + { echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \ + echo "... with LOWBOOT configuration" ; \ + } + @[ -z "$(findstring LOWBOOT08,$@)" ] || \ + { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \ + echo "... with 8 MB flash only" ; \ + } @[ -z "$(findstring 5200,$@)" ] || \ { echo "#define CONFIG_MPC5200" >>include/config.h ; \ echo "... with MPC5200 processor" ; \ @@ -999,7 +1009,7 @@ clean: rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend rm -f tools/env/fw_printenv tools/env/fw_setenv rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image - rm -f board/trab/trab_fkt board/trab/config.tmp + rm -f board/trab/trab_fkt board/*/config.tmp clobber: clean find . -type f \ |