diff options
author | wdenk <wdenk> | 2004-04-18 21:13:41 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-04-18 21:13:41 +0000 |
commit | 507bbe3e8084a82c20399367801da87db7d14e65 (patch) | |
tree | 0660633e2e1caf4b819fd46ed43f83e3e05c5523 /Makefile | |
parent | 998eaaecd46ee5f00550e30e606cb5556e0b9345 (diff) |
* Patch by Yasushi Shoji, 07 Apr 2004:
- add support for microblaze processors
- add support for AtmarkTechno "suzaku" board
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -75,6 +75,9 @@ endif ifeq ($(ARCH),m68k) CROSS_COMPILE = m68k-elf- endif +ifeq ($(ARCH),microblaze) +CROSS_COMPILE = mb- +endif endif endif @@ -1250,6 +1253,17 @@ ADNPESC1_config: unconfig @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv +#======================================================================== +# MicroBlaze +#======================================================================== +######################################################################### +## Microblaze +######################################################################### +suzaku_config: unconfig + @ >include/config.h + @echo "#define CONFIG_SUZAKU 1" >> include/config.h + @./mkconfig -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno + ######################################################################### ## MIPS32 AU1X00 ######################################################################### |