diff options
author | wdenk <wdenk> | 2004-06-06 23:13:55 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-06-06 23:13:55 +0000 |
commit | a56bd92289298bde16306bcc754277db45315d2f (patch) | |
tree | 191b3ffdc97a005ddc973f7de85ef3b1d3768fd8 /Makefile | |
parent | 5ca2679933142f7bf2996590b2e318c298664748 (diff) | |
download | u-boot-imx-a56bd92289298bde16306bcc754277db45315d2f.zip u-boot-imx-a56bd92289298bde16306bcc754277db45315d2f.tar.gz u-boot-imx-a56bd92289298bde16306bcc754277db45315d2f.tar.bz2 |
* Patch by Dave Peverley, 30 Apr 2004:
Add support for OMAP730 Perseus2 Development board
* Patch by Alan J. Luse, 29 Apr 2004:
Fix flash chip-select (OR0) option register setting on FADS boards.
* Patch by Alan J. Luse, 29 Apr 2004:
Report MII network speed and duplex setting properly when
auto-negotiate is not enabled.
* Patch by Jarrett Redd, 29 Apr 2004:
Fix hang on reset on Ocotea board due to flash in wrong mode.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -981,6 +981,8 @@ xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config, xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1))) +xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1))) + SX1_config : unconfig @./mkconfig $(@:_config=) arm arm925t sx1 @@ -1011,6 +1013,18 @@ omap1610h2_cs3boot_config : unconfig fi; @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn +omap730p2_config \ +omap730p2_cs0boot_config \ +omap730p2_cs3boot_config : unconfig + @if [ "$(findstring _cs0boot_, $@)" ] ; then \ + echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \ + echo "... configured for CS0 boot"; \ + else \ + echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \ + echo "... configured for CS3 boot"; \ + fi; + @./mkconfig -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 + smdk2400_config : unconfig @./mkconfig $(@:_config=) arm arm920t smdk2400 |