diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2011-06-15 21:31:01 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2011-06-15 21:31:01 +0000 |
commit | 235e3319876d5d1354e2774ec73495fdeb2616ec (patch) | |
tree | d776ac5daed14d9e6ee5562e979d388420e8ff08 /target/linux/generic/patches-3.0/201-extra_optimization.patch | |
parent | 0db9c2bd7d3620ba18fa784bda702d971783b4f6 (diff) | |
download | upstream-235e3319876d5d1354e2774ec73495fdeb2616ec.tar.gz upstream-235e3319876d5d1354e2774ec73495fdeb2616ec.tar.bz2 upstream-235e3319876d5d1354e2774ec73495fdeb2616ec.zip |
linux/generic: Add support for 3.0-rc3
Also make linux identify itself properly as 3.0, not 3.0.0.
Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com>
SVN-Revision: 27191
Diffstat (limited to 'target/linux/generic/patches-3.0/201-extra_optimization.patch')
-rw-r--r-- | target/linux/generic/patches-3.0/201-extra_optimization.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.0/201-extra_optimization.patch b/target/linux/generic/patches-3.0/201-extra_optimization.patch new file mode 100644 index 0000000000..6fe8b0938d --- /dev/null +++ b/target/linux/generic/patches-3.0/201-extra_optimization.patch @@ -0,0 +1,24 @@ +--- a/Makefile ++++ b/Makefile +@@ -559,9 +559,9 @@ endif # $(dot-config) + all: vmlinux + + ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE +-KBUILD_CFLAGS += -Os ++KBUILD_CFLAGS += -Os -fno-caller-saves + else +-KBUILD_CFLAGS += -O2 ++KBUILD_CFLAGS += -O2 -fno-reorder-blocks -fno-tree-ch -fno-caller-saves + endif + + include $(srctree)/arch/$(SRCARCH)/Makefile +@@ -620,6 +620,9 @@ endif + NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) + CHECKFLAGS += $(NOSTDINC_FLAGS) + ++# improve gcc optimization ++CFLAGS += $(call cc-option,-funit-at-a-time,) ++ + # warn about C99 declaration after statement + KBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,) + |