diff options
author | Xiangfu Liu <xiangfu@openmobilefree.net> | 2010-08-09 23:13:43 +0800 |
---|---|---|
committer | Shinya Kuribayashi <skuribay@pobox.com> | 2010-09-04 11:52:17 +0900 |
commit | 40930316071b9062cae3f01f00876e2fc90940ca (patch) | |
tree | 63b31323bd2f8f0e08af4e0ece134e57e0ba9e96 /board/qemu-mips | |
parent | bd2313078114c4b44c4a5ce149af43bcb7fc8854 (diff) | |
download | u-boot-40930316071b9062cae3f01f00876e2fc90940ca.tar.gz |
MIPS: update the MIPS u-boot.lds
From the document, if set all arguments in "OUTPUT_FORMAT" to
"tradbigmips", then even add "-EL" to gcc we still get EB format.
pb1x00 is only used in Little-endian, so its default endian should be
set to LE.
Signed-off-by: Xiangfu Liu <xiangfu@openmobilefree.net>
Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
Diffstat (limited to 'board/qemu-mips')
-rw-r--r-- | board/qemu-mips/u-boot.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/qemu-mips/u-boot.lds b/board/qemu-mips/u-boot.lds index ad058caa25..bd16786cbc 100644 --- a/board/qemu-mips/u-boot.lds +++ b/board/qemu-mips/u-boot.lds @@ -24,7 +24,7 @@ /* OUTPUT_FORMAT("elf32-bigmips", "elf32-bigmips", "elf32-bigmips") */ -OUTPUT_FORMAT("elf32-tradbigmips", "elf32-tradbigmips", "elf32-tradbigmips") +OUTPUT_FORMAT("elf32-tradbigmips", "elf32-tradbigmips", "elf32-tradlittlemips") OUTPUT_ARCH(mips) ENTRY(_start) SECTIONS |