MAKEALL: sort entries / lists.

Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
Wolfgang Denk 2008-04-20 15:35:52 -07:00
parent 1e01477aea
commit d9a42c0ace
1 changed files with 29 additions and 22 deletions

51
MAKEALL
View File

@ -386,12 +386,6 @@ LIST_74xx=" \
ZUMA \ ZUMA \
" "
LIST_TSEC=" \
${LIST_85xx} \
${LIST_86xx} \
${LIST_83xx} \
"
LIST_7xx=" \ LIST_7xx=" \
BAB7xx \ BAB7xx \
CPCI750 \ CPCI750 \
@ -400,6 +394,16 @@ LIST_7xx=" \
ppmc7xx \ ppmc7xx \
" "
#########################################################################
## PowerPC groups
#########################################################################
LIST_TSEC=" \
${LIST_83xx} \
${LIST_85xx} \
${LIST_86xx} \
"
LIST_ppc=" \ LIST_ppc=" \
${LIST_5xx} \ ${LIST_5xx} \
${LIST_512x} \ ${LIST_512x} \
@ -545,6 +549,9 @@ LIST_ixp=" \
scpu \ scpu \
" "
#########################################################################
## ARM groups
#########################################################################
LIST_arm=" \ LIST_arm=" \
${LIST_SA} \ ${LIST_SA} \
@ -705,6 +712,11 @@ LIST_blackfin=" \
## SH Systems ## SH Systems
######################################################################### #########################################################################
LIST_sh3=" \
mpr2 \
ms7720se \
"
LIST_sh4=" \ LIST_sh4=" \
ms7750se \ ms7750se \
ms7722se \ ms7722se \
@ -713,11 +725,6 @@ LIST_sh4=" \
r2dplus \ r2dplus \
" "
LIST_sh3=" \
mpr2 \
ms7720se \
"
LIST_sh=" \ LIST_sh=" \
${LIST_sh3} \ ${LIST_sh3} \
${LIST_sh4} \ ${LIST_sh4} \
@ -755,17 +762,17 @@ build_target() {
for arg in $@ for arg in $@
do do
case "$arg" in case "$arg" in
arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa| \ arm|SA|ARM7|ARM9|ARM10|ARM11|ixp|pxa \
avr32| \ |avr32 \
sparc| \ |blackfin \
blackfin| \ |coldfire \
coldfire| \ |microblaze \
microblaze| \ |mips|mips_el \
mips|mips_el| \ |nios|nios2 \
nios|nios2| \ |ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx|TSEC \
ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \ |sh|sh3|sh4 \
x86|I486|TSEC| \ |sparc \
sh|sh4|sh3 \ |x86|I486 \
) )
for target in `eval echo '$LIST_'${arg}` for target in `eval echo '$LIST_'${arg}`
do do