mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
MAKEALL: sort entries / lists.
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
1e01477aea
commit
d9a42c0ace
1 changed files with 29 additions and 22 deletions
51
MAKEALL
51
MAKEALL
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue