diff options
author | Wolfgang Denk <wd@denx.de> | 2008-04-20 15:35:52 -0700 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-04-20 15:35:52 -0700 |
commit | d9a42c0ace4d4f9cb061d62a7265d1780f90447b (patch) | |
tree | 6df42bf52408f58ec58cc7c2a407ba790525d419 | |
parent | 1e01477aeaf409ddb97e2633aab9cf8c9c60612e (diff) | |
download | u-boot-imx-d9a42c0ace4d4f9cb061d62a7265d1780f90447b.zip u-boot-imx-d9a42c0ace4d4f9cb061d62a7265d1780f90447b.tar.gz u-boot-imx-d9a42c0ace4d4f9cb061d62a7265d1780f90447b.tar.bz2 |
MAKEALL: sort entries / lists.
Signed-off-by: Wolfgang Denk <wd@denx.de>
-rwxr-xr-x | MAKEALL | 51 |
1 files changed, 29 insertions, 22 deletions
@@ -386,12 +386,6 @@ LIST_74xx=" \ ZUMA \ " -LIST_TSEC=" \ - ${LIST_85xx} \ - ${LIST_86xx} \ - ${LIST_83xx} \ -" - LIST_7xx=" \ BAB7xx \ CPCI750 \ @@ -400,6 +394,16 @@ LIST_7xx=" \ ppmc7xx \ " +######################################################################### +## PowerPC groups +######################################################################### + +LIST_TSEC=" \ + ${LIST_83xx} \ + ${LIST_85xx} \ + ${LIST_86xx} \ +" + LIST_ppc=" \ ${LIST_5xx} \ ${LIST_512x} \ @@ -545,6 +549,9 @@ LIST_ixp=" \ scpu \ " +######################################################################### +## ARM groups +######################################################################### LIST_arm=" \ ${LIST_SA} \ @@ -705,6 +712,11 @@ LIST_blackfin=" \ ## SH Systems ######################################################################### +LIST_sh3=" \ + mpr2 \ + ms7720se \ +" + LIST_sh4=" \ ms7750se \ ms7722se \ @@ -713,11 +725,6 @@ LIST_sh4=" \ r2dplus \ " -LIST_sh3=" \ - mpr2 \ - ms7720se \ -" - LIST_sh=" \ ${LIST_sh3} \ ${LIST_sh4} \ @@ -755,17 +762,17 @@ build_target() { for arg in $@ do case "$arg" in - arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \ - avr32| \ - sparc| \ - blackfin| \ - coldfire| \ - microblaze| \ - mips|mips_el| \ - nios|nios2| \ - ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \ - x86|I486|TSEC| \ - sh|sh4|sh3 \ + arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa \ + |avr32 \ + |blackfin \ + |coldfire \ + |microblaze \ + |mips|mips_el \ + |nios|nios2 \ + |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \ + |sh|sh3|sh4 \ + |sparc \ + |x86|I486 \ ) for target in `eval echo '$LIST_'${arg}` do |