diff options
author | Andy Fleming <afleming@freescale.com> | 2007-08-15 20:03:13 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-08-16 12:12:43 +0200 |
commit | ec7238229507e7f47533a611ea8c53319d234cf3 (patch) | |
tree | 52a89af01a608732cbd4f56758ff0c213a12f908 /MAKEALL | |
parent | 10aaf716cb0dc6614df54ef78bed5144afd23ef8 (diff) | |
download | u-boot-imx-ec7238229507e7f47533a611ea8c53319d234cf3.zip u-boot-imx-ec7238229507e7f47533a611ea8c53319d234cf3.tar.gz u-boot-imx-ec7238229507e7f47533a611ea8c53319d234cf3.tar.bz2 |
Add support for building all boards with a TSEC
Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
Now we can do a MAKEALL test on all of them!
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'MAKEALL')
-rwxr-xr-x | MAKEALL | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -358,6 +358,12 @@ LIST_74xx=" \ ZUMA \ " +LIST_TSEC=" \ + ${LIST_85xx} \ + ${LIST_86xx} \ + ${LIST_83xx} \ +" + LIST_7xx=" \ BAB7xx \ CPCI750 \ @@ -672,7 +678,7 @@ do mips|mips_el| \ nios|nios2| \ ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \ - x86|I486) + x86|I486|TSEC) for target in `eval echo '$LIST_'${arg}` do build_target ${target} |