summaryrefslogtreecommitdiffstats
path: root/package/uboot-lantiq/patches/010-fix-mips-flags.patch
diff options
context:
space:
mode:
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-10-11 10:05:13 +0000
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-10-11 10:05:13 +0000
commit135d0c4f8f7754b5b66ec16ee1e8d187396c5392 (patch)
tree77a183303303f4b951d44b7cb5a56758fe1c7238 /package/uboot-lantiq/patches/010-fix-mips-flags.patch
parentbaf761b25634399c61b375b6d6179062a4db15ae (diff)
[lantiq] drop unmaintained packages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33723 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uboot-lantiq/patches/010-fix-mips-flags.patch')
-rw-r--r--package/uboot-lantiq/patches/010-fix-mips-flags.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/package/uboot-lantiq/patches/010-fix-mips-flags.patch b/package/uboot-lantiq/patches/010-fix-mips-flags.patch
deleted file mode 100644
index 6dd7d8f56..000000000
--- a/package/uboot-lantiq/patches/010-fix-mips-flags.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/cpu/mips/config.mk
-+++ b/cpu/mips/config.mk
-@@ -23,17 +23,19 @@
- v=$(shell $(AS) --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2)
- MIPSFLAGS:=$(shell \
- if [ "$v" -lt "14" ]; then \
-- echo "-mcpu=4kc"; \
-+ echo "-mcpu=mips32"; \
- else \
-- echo "-march=4kc -mtune=4kc"; \
-+ echo "-mips32 -march=mips32 -mtune=mips32"; \
- fi)
-
-+ifndef ENDIANNESS
- ifneq (,$(findstring 4KCle,$(CROSS_COMPILE)))
- ENDIANNESS = -EL
- else
- ENDIANNESS = -EB
- endif
-+endif
-
--MIPSFLAGS += $(ENDIANNESS)
-+MIPSFLAGS += $(ENDIANNESS) -fno-schedule-insns -fno-schedule-insns2
-
- PLATFORM_CPPFLAGS += $(MIPSFLAGS)