diff options
author | Sam Sparks <SSparks@twacs.com> | 2007-09-14 11:14:42 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-09-15 20:57:21 +0200 |
commit | e21659e30660a1377c42af135a6114efe39801d9 (patch) | |
tree | 4d4f9d9f17a578842238026a511858e58f3f0dee | |
parent | 1218abf1b5817a39a82399b4b928b00750575bda (diff) | |
download | u-boot-imx-e21659e30660a1377c42af135a6114efe39801d9.zip u-boot-imx-e21659e30660a1377c42af135a6114efe39801d9.tar.gz u-boot-imx-e21659e30660a1377c42af135a6114efe39801d9.tar.bz2 |
Update MPC8349ITX*_config to place config.tmp in right place.
MPC834ITX*_config does not store config.tmp at the correct locatation,
causing MPC8349ITXGP to have the wrong TEXT_BASE.
Signed-off-by: Sam Sparks <SSparks@twacs.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1794,13 +1794,13 @@ MPC8349ITX_config \ MPC8349ITX_LOWBOOT_config \ MPC8349ITXGP_config: unconfig @mkdir -p $(obj)include - @mkdir -p $(obj)board/mpc8349itx + @mkdir -p $(obj)board/freescale/mpc8349itx @echo "#define CONFIG_$(subst _LOWBOOT,,$(@:_config=))" >> $(obj)include/config.h @if [ "$(findstring GP,$@)" ] ; then \ - echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \ + echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \ fi @if [ "$(findstring LOWBOOT,$@)" ] ; then \ - echo "TEXT_BASE = 0xFE000000" >$(obj)board/mpc8349itx/config.tmp ; \ + echo "TEXT_BASE = 0xFE000000" >$(obj)board/freescale/mpc8349itx/config.tmp ; \ fi @$(MKCONFIG) -a -n $(@:_config=) MPC8349ITX ppc mpc83xx mpc8349itx freescale |