diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-14 00:27:00 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-14 00:27:00 +0200 |
commit | b62bdffb75c9f8b05259e26c4e1183a9447e0507 (patch) | |
tree | 8504ebe2305d8abb2b704773de673fd5f53ef68e /MAKEALL | |
parent | 5ad2af341d1c910fb4d15af59a2beb93513ae3c2 (diff) | |
download | u-boot-imx-b62bdffb75c9f8b05259e26c4e1183a9447e0507.zip u-boot-imx-b62bdffb75c9f8b05259e26c4e1183a9447e0507.tar.gz u-boot-imx-b62bdffb75c9f8b05259e26c4e1183a9447e0507.tar.bz2 |
Adjust MAKEALL script for little endian MIPS build tests
Diffstat (limited to 'MAKEALL')
-rwxr-xr-x | MAKEALL | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -196,7 +196,7 @@ LIST_arm=" \ " ######################################################################### -## MIPS Systems +## MIPS Systems (default = big endian) ######################################################################### LIST_mips4kc="incaip" @@ -208,6 +208,18 @@ LIST_au1xx0="dbau1000 dbau1100 dbau1500 dbau1550 dbau1550_el" LIST_mips="${LIST_mips4kc} ${LIST_mips5kc} ${LIST_au1xx0}" ######################################################################### +## MIPS Systems (little endian) +######################################################################### + +LIST_mips4kc_el="" + +LIST_mips5kc_el="" + +LIST_au1xx0_el="dbau1550_el" + +LIST_mips_el="${LIST_mips4kc_el} ${LIST_mips5kc_el} ${LIST_au1xx0_el}" + +######################################################################### ## i386 Systems ######################################################################### @@ -263,7 +275,7 @@ do ppc|5xx|5xxx|8xx|8220|824x|8260|83xx|85xx|4xx|7xx|74xx| \ arm|SA|ARM7|ARM9|ARM11|pxa|ixp| \ microblaze| \ - mips| \ + mips|mips_el| \ nios|nios2| \ x86|I486) for target in `eval echo '$LIST_'${arg}` |