diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2007-11-27 09:44:53 +0100 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2007-11-29 01:17:53 +0900 |
commit | c7144373427a178332bf9754131c8c34c52c200a (patch) | |
tree | 1ebae82f34e2f519fcbb63af29a979a6cc3c0094 /MAKEALL | |
parent | 130080874a3d28450098481a262c5f7c855e908d (diff) | |
download | u-boot-imx-c7144373427a178332bf9754131c8c34c52c200a.zip u-boot-imx-c7144373427a178332bf9754131c8c34c52c200a.tar.gz u-boot-imx-c7144373427a178332bf9754131c8c34c52c200a.tar.bz2 |
sh: Add sh3 and sh4 support in MAKEALL
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'MAKEALL')
-rwxr-xr-x | MAKEALL | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -654,6 +654,22 @@ LIST_blackfin=" \ bf561-ezkit \ " +######################################################################### +## SH Systems +######################################################################### + +LIST_sh4=" \ + ms7722se \ +" + +LIST_sh3="" + + +LIST_sh=" \ + ${LIST_sh3} \ + ${LIST_sh4} \ +" + #----------------------------------------------------------------------- #----- for now, just run PPC by default ----- @@ -688,7 +704,9 @@ do mips|mips_el| \ nios|nios2| \ ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \ - x86|I486|TSEC) + x86|I486|TSEC| \ + sh|sh4|sh3 \ + ) for target in `eval echo '$LIST_'${arg}` do build_target ${target} |