mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 13:41:31 +00:00
Fix MIPS LE build problem
Patch by Thomas Lange, 10 Aug 2005
This commit is contained in:
parent
311d802790
commit
0352f17687
2 changed files with 4 additions and 1 deletions
|
@ -2,6 +2,9 @@
|
||||||
Changes since U-Boot 1.1.4:
|
Changes since U-Boot 1.1.4:
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
* Fix MIPS LE build problem
|
||||||
|
Patch by Thomas Lange, 10 Aug 2005
|
||||||
|
|
||||||
* Check argument count in "mii" command.
|
* Check argument count in "mii" command.
|
||||||
Problem pointed out by Andrew Dyer, 13 Jun 2005
|
Problem pointed out by Andrew Dyer, 13 Jun 2005
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
# MA 02111-1307 USA
|
# MA 02111-1307 USA
|
||||||
#
|
#
|
||||||
v=$(shell \
|
v=$(shell \
|
||||||
mips-linux-as --version|grep "GNU assembler"|awk '{print $$3}'|awk -F . '{print $$2}')
|
$(CROSS_COMPILE)as --version|grep "GNU assembler"|awk '{print $$3}'|awk -F . '{print $$2}')
|
||||||
MIPSFLAGS=$(shell \
|
MIPSFLAGS=$(shell \
|
||||||
if [ "$v" -lt "14" ]; then \
|
if [ "$v" -lt "14" ]; then \
|
||||||
echo "-mcpu=4kc"; \
|
echo "-mcpu=4kc"; \
|
||||||
|
|
Loading…
Add table
Reference in a new issue