diff options
author | wdenk <wdenk> | 2003-03-27 12:09:35 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-03-27 12:09:35 +0000 |
commit | c021880ac5837154ca51b9d84e6b75f39b64aabe (patch) | |
tree | 5f9c3cce4dd7b49e69ec5007f58c9b9a2f215c15 /MAKEALL | |
parent | ac6dbb85b7f080d923013bff4e1d5267cb6f8a5a (diff) |
* Add support for MIPS32 4Kc CPUs
* Add support for INCA-IP Board
Diffstat (limited to 'MAKEALL')
-rw-r--r-- | MAKEALL | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -107,6 +107,14 @@ LIST_xscale="cradle csb226 innokom lubbock" LIST_arm="${LIST_SA} ${LIST_ARM7} ${LIST_ARM9} ${LIST_xscale}" +######################################################################### +## MIPS 4Kc Systems +######################################################################### + +LIST_mips4kc="incaip" + +LIST_mips="${LIST_mips4kc}" + #----- for now, just run PPC by default ----- [ $# = 0 ] && set $LIST_ppc @@ -128,7 +136,7 @@ build_target() { for arg in $@ do case "$arg" in - 8xx|824x|8260|4xx|7xx|74xx|SA|ARM7|ARM9|ppc|arm|xscale) + 8xx|824x|8260|4xx|7xx|74xx|SA|ARM7|ARM9|ppc|arm|xscale|mips) for target in `eval echo '$LIST_'${arg}` do build_target ${target} |