diff options
author | wdenk <wdenk> | 2003-04-20 16:49:37 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-04-20 16:49:37 +0000 |
commit | 824a1ebffece80586d52c343b2f451086154dff8 (patch) | |
tree | 3f042c157d5585d76e641366f917dc3aef65a790 /Makefile | |
parent | d791b1dc3e64a6a6317293245d884589bc5c6277 (diff) |
Compile fixes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -337,7 +337,7 @@ TOP860_config: unconfig # All boards can come with 50 MHz (default), 66MHz or 80MHz clock, # but only 855 and 860 boards may come with FEC # and 823 boards may have LCD support -xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _LCD,,$(subst _FEC,,$(subst _config,,$1))))) +xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _LCD,,$(subst _config,,$1)))) FPS850L_config \ FPS860L_config \ @@ -360,10 +360,6 @@ TQM862L_config \ TQM862L_66MHz_config \ TQM862L_80MHz_config: unconfig @ >include/config.h - @[ -z "$(findstring _FEC,$@)" ] || \ - { echo "#define CONFIG_FEC_ENET" >>include/config.h ; \ - echo "... with FEC support" ; \ - } @[ -z "$(findstring _66MHz,$@)" ] || \ { echo "#define CONFIG_66MHz" >>include/config.h ; \ echo "... with 66MHz system clock" ; \ |