diff options
author | Wolfgang Denk <wd@denx.de> | 2009-03-15 22:15:13 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-03-15 22:15:13 +0100 |
commit | e05825324a8a7679b87db550a0d7ade06c890494 (patch) | |
tree | d55e616216d4609eeb3ae629aaa6aacbfcb5fd94 /Makefile | |
parent | 45f93d4e3c0d2a083131d1c579908bfeb3011bb1 (diff) | |
parent | 94a353611b93ac4cb4434a5f7e98aa0902da919e (diff) | |
download | u-boot-imx-e05825324a8a7679b87db550a0d7ade06c890494.zip u-boot-imx-e05825324a8a7679b87db550a0d7ade06c890494.tar.gz u-boot-imx-e05825324a8a7679b87db550a0d7ade06c890494.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-sh
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -3398,10 +3398,23 @@ sh7763rdp_config : unconfig @echo "#define CONFIG_SH7763RDP 1" > $(obj)include/config.h @$(MKCONFIG) -a $(@:_config=) sh sh4 sh7763rdp renesas +xtract_sh7785lcr = $(subst _32bit,,$(subst _config,,$1)) +sh7785lcr_32bit_config \ sh7785lcr_config : unconfig @ >include/config.h @echo "#define CONFIG_SH7785LCR 1" >> include/config.h - @$(MKCONFIG) -a $(@:_config=) sh sh4 sh7785lcr renesas + @if [ "$(findstring 32bit, $@)" ] ; then \ + echo "#define CONFIG_SH_32BIT 1" >> $(obj)include/config.h ; \ + cp $(obj)board/renesas/sh7785lcr/u-boot_32bit \ + $(obj)board/renesas/sh7785lcr/u-boot.lds ; \ + echo "TEXT_BASE = 0x8ff80000" > \ + $(obj)board/renesas/sh7785lcr/config.tmp ; \ + $(XECHO) " ... enable 32-Bit Address Extended Mode" ; \ + else \ + cp $(obj)board/renesas/sh7785lcr/u-boot_29bit \ + $(obj)board/renesas/sh7785lcr/u-boot.lds ; \ + fi + @$(MKCONFIG) -a $(call xtract_sh7785lcr,$@) sh sh4 sh7785lcr renesas ap325rxa_config : unconfig @mkdir -p $(obj)include |