diff options
author | Wolfgang Denk <wd@denx.de> | 2007-11-02 15:09:10 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-11-02 15:09:10 +0100 |
commit | f0516920f6e048425b005c049378e80d600bd268 (patch) | |
tree | 8038bb6bc203daf2ad4a9aa4d2e246f10f12a7c1 /Makefile | |
parent | 5b746c3ea8c72035621435853d5b5278af0a1011 (diff) | |
parent | 8b6684a698500be9c142ec2c9f46cfc348e17f0c (diff) | |
download | u-boot-imx-f0516920f6e048425b005c049378e80d600bd268.zip u-boot-imx-f0516920f6e048425b005c049378e80d600bd268.tar.gz u-boot-imx-f0516920f6e048425b005c049378e80d600bd268.tar.bz2 |
Merge branch 'master' of /home/wd/git/u-boot/custodians
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1733,9 +1733,13 @@ M54455EVB_i66_config : unconfig >include/config.h ; \ if [ "$${FLASH}" == "INTEL" ] ; then \ echo "#undef CFG_ATMEL_BOOT" >> $(obj)include/config.h ; \ + echo "TEXT_BASE = 0x00000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ + cp $(obj)board/freescale/m54455evb/u-boot.int $(obj)board/freescale/m54455evb/u-boot.lds ; \ echo "... with INTEL boot..." ; \ else \ echo "#define CFG_ATMEL_BOOT" >> $(obj)include/config.h ; \ + echo "TEXT_BASE = 0x04000000" > $(obj)board/freescale/m54455evb/config.tmp ; \ + cp $(obj)board/freescale/m54455evb/u-boot.atm $(obj)board/freescale/m54455evb/u-boot.lds ; \ echo "... with ATMEL boot..." ; \ fi; \ echo "#define CFG_INPUT_CLKSRC $${FREQ}" >> $(obj)include/config.h ; \ |