diff options
author | John Crispin <john@openwrt.org> | 2012-10-11 10:05:13 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2012-10-11 10:05:13 +0000 |
commit | a95775e4b2a9831decbc7f37a2e47985ea2ac222 (patch) | |
tree | 2a188f047a7da8e3868f734b26756551c9f7ec8e /package/uboot-lantiq/patches/010-fix-mips-flags.patch | |
parent | 06218a992e0ffa234d8c180f9a24415b2fb5fe62 (diff) | |
download | mtk-20170518-a95775e4b2a9831decbc7f37a2e47985ea2ac222.zip mtk-20170518-a95775e4b2a9831decbc7f37a2e47985ea2ac222.tar.gz mtk-20170518-a95775e4b2a9831decbc7f37a2e47985ea2ac222.tar.bz2 |
drop unmaintained packages
SVN-Revision: 33723
Diffstat (limited to 'package/uboot-lantiq/patches/010-fix-mips-flags.patch')
-rw-r--r-- | package/uboot-lantiq/patches/010-fix-mips-flags.patch | 25 |
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 6dd7d8f..0000000 --- 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) |