Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9146
-gerrit
commit c3c479de9e81698cc11ca67ce22bd92543b5926c Author: Patrick Georgi pgeorgi@google.com Date: Sat Mar 28 15:49:46 2015 +0100
build system: mips is a valid nickname for mipsel
Change-Id: I5829a96cbb0af0398113efbdf34dfa3d102bf4c8 Signed-off-by: Patrick Georgi pgeorgi@google.com --- util/xcompile/xcompile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index fc221b1..5809ec0 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -209,10 +209,11 @@ arch_config_x86() { }
arch_config_mipsel() { - TARCH="mipsel" + TARCH="mips" TBFDARCHS="tradlittlemips littlemips" TCLIST="mipsel" TWIDTH="32" + TSUPP="mips mipsel" TABI="elf" }