diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2013-10-24 13:50:11 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2013-10-24 13:50:11 +0000 |
commit | e72c7e17a475c00134c56f4392578ddc16a47a2e (patch) | |
tree | 842835f958f9c9ed315cb853173d51e43f76bbf5 /target/linux/generic/patches-3.12/201-extra_optimization.patch | |
parent | 4341ea40379ed24c103e37b75661c62bfc3270f6 (diff) | |
download | upstream-e72c7e17a475c00134c56f4392578ddc16a47a2e.tar.gz upstream-e72c7e17a475c00134c56f4392578ddc16a47a2e.tar.bz2 upstream-e72c7e17a475c00134c56f4392578ddc16a47a2e.zip |
preliminary 3.12 support
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 38528
Diffstat (limited to 'target/linux/generic/patches-3.12/201-extra_optimization.patch')
-rw-r--r-- | target/linux/generic/patches-3.12/201-extra_optimization.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.12/201-extra_optimization.patch b/target/linux/generic/patches-3.12/201-extra_optimization.patch new file mode 100644 index 0000000000..ccb7fcfb3b --- /dev/null +++ b/target/linux/generic/patches-3.12/201-extra_optimization.patch @@ -0,0 +1,14 @@ +--- a/Makefile ++++ b/Makefile +@@ -571,9 +571,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 |