Author: rsmith Date: Thu Mar 7 10:10:51 2013 New Revision: 3597 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/3597
Log: Revert -mlittle-endian removal in r3596
The _real_ problem was user error. I was trying to compile the arm execuatable with an x86 compiler. -mlittle-endian is a perfectly valid option for the arm-elf-gcc compiler. Thankfully its the default so the removal didn't actually cause a problem.
Same sort of thing for the xinflate change in r3596 but I didn't revert that becuase it does make it clearer whats going on and that there are 2 versions of the inflate object.
Modified: cpu/arm/Linux/Makefile
Modified: cpu/arm/Linux/Makefile ============================================================================== --- cpu/arm/Linux/Makefile Thu Mar 7 09:42:59 2013 (r3596) +++ cpu/arm/Linux/Makefile Thu Mar 7 10:10:51 2013 (r3597) @@ -2,8 +2,7 @@
BP=../../..
-CFLAGS = -O -DARM -# -mlittle-endian +CFLAGS = -O -DARM -mlittle-endian
WRTAIL = forth/wrapper WRDIR = ${BP}/${WRTAIL}
openfirmware@openfirmware.info