summaryrefslogtreecommitdiff
path: root/target/linux/generic/patches-3.13/201-extra_optimization.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2014-01-20 13:56:24 +0000
committerImre Kaloz <kaloz@openwrt.org>2014-01-20 13:56:24 +0000
commit6bd1a3700191f14d64c417a1e443ec035a4efee7 (patch)
tree2c3d28386bbc47c37b708c0937962caae6a5ffa9 /target/linux/generic/patches-3.13/201-extra_optimization.patch
parentc67ec51c85184c4fb3b6cf13f6ffc1e810ecdc6f (diff)
downloadmtk-20170518-6bd1a3700191f14d64c417a1e443ec035a4efee7.zip
mtk-20170518-6bd1a3700191f14d64c417a1e443ec035a4efee7.tar.gz
mtk-20170518-6bd1a3700191f14d64c417a1e443ec035a4efee7.tar.bz2
add initial 3.13 support
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39348
Diffstat (limited to 'target/linux/generic/patches-3.13/201-extra_optimization.patch')
-rw-r--r--target/linux/generic/patches-3.13/201-extra_optimization.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.13/201-extra_optimization.patch b/target/linux/generic/patches-3.13/201-extra_optimization.patch
new file mode 100644
index 0000000..79f9e8c
--- /dev/null
+++ b/target/linux/generic/patches-3.13/201-extra_optimization.patch
@@ -0,0 +1,14 @@
+--- a/Makefile
++++ b/Makefile
+@@ -574,9 +574,9 @@ endif # $(dot-config)
+ all: vmlinux
+
+ ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
+-KBUILD_CFLAGS += -Os $(call cc-disable-warning,maybe-uninitialized,)
++KBUILD_CFLAGS += -Os $(EXTRA_OPTIMIZATION) $(call cc-disable-warning,maybe-uninitialized,)
+ else
+-KBUILD_CFLAGS += -O2
++KBUILD_CFLAGS += -O2 -fno-reorder-blocks -fno-tree-ch $(EXTRA_OPTIMIZATION)
+ endif
+
+ include $(srctree)/arch/$(SRCARCH)/Makefile