diff options
author | wdenk <wdenk> | 2003-06-05 19:27:42 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-05 19:27:42 +0000 |
commit | 73a8b27c574f5ec1c8fdd9d8d065bb845d8743d3 (patch) | |
tree | f409359364776e565b9484337a0620388041b456 /Makefile | |
parent | 08eaea9c9fa4e8ea25325610c512cb90b6bea1dd (diff) |
* Add support for RMU board
* Add support for TQM862L at 100/50 MHz
* Patch by Pantelis Antoniou, 02 Jun 2003:
major reconstruction of networking code;
add "ping" support (outgoing only!)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -323,6 +323,9 @@ RPXClassic_config: unconfig RPXlite_config: unconfig @./mkconfig $(@:_config=) ppc mpc8xx RPXlite +rmu_config: unconfig + @./mkconfig $(@:_config=) ppc mpc8xx rmu + RRvision_config: unconfig @./mkconfig $(@:_config=) ppc mpc8xx RRvision @@ -349,10 +352,10 @@ TOP860_config: unconfig @./mkconfig $(@:_config=) ppc mpc8xx top860 emk # Play some tricks for configuration selection -# All boards can come with 50 MHz (default), 66MHz or 80MHz clock, +# All boards can come with 50 MHz (default), 66MHz, 80MHz or 100 MHz 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 _config,,$1)))) +xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _100MHz,,$(subst _LCD,,$(subst _config,,$1))))) FPS850L_config \ FPS860L_config \ @@ -373,7 +376,8 @@ TQM860L_66MHz_config \ TQM860L_80MHz_config \ TQM862L_config \ TQM862L_66MHz_config \ -TQM862L_80MHz_config: unconfig +TQM862L_80MHz_config \ +TQM862L_100MHz_config: unconfig @ >include/config.h @[ -z "$(findstring _66MHz,$@)" ] || \ { echo "#define CONFIG_66MHz" >>include/config.h ; \ @@ -383,6 +387,10 @@ TQM862L_80MHz_config: unconfig { echo "#define CONFIG_80MHz" >>include/config.h ; \ echo "... with 80MHz system clock" ; \ } + @[ -z "$(findstring _100MHz,$@)" ] || \ + { echo "#define CONFIG_100MHz" >>include/config.h ; \ + echo "... with 100MHz system clock" ; \ + } @[ -z "$(findstring _LCD,$@)" ] || \ { echo "#define CONFIG_LCD" >>include/config.h ; \ echo "#define CONFIG_NEC_NL6648BC20" >>include/config.h ; \ |