summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2014-02-18 22:11:24 +0000
committerNicolas Thill <nico@openwrt.org>2014-02-18 22:11:24 +0000
commitece85d2d259713ba4c345152ab5747342b747688 (patch)
tree2b1bf6a116eca5b701d553ed1bead15394ebe40b
parent97faa098a2d03e4e7bb72f8b111cbb9afe90512e (diff)
downloadmtk-20170518-ece85d2d259713ba4c345152ab5747342b747688.zip
mtk-20170518-ece85d2d259713ba4c345152ab5747342b747688.tar.gz
mtk-20170518-ece85d2d259713ba4c345152ab5747342b747688.tar.bz2
uboot-envtools: pass target cflags
SVN-Revision: 39629
-rw-r--r--package/boot/uboot-envtools/Makefile3
-rw-r--r--package/boot/uboot-envtools/patches/001-honor_opt_flags.patch12
2 files changed, 14 insertions, 1 deletions
diff --git a/package/boot/uboot-envtools/Makefile b/package/boot/uboot-envtools/Makefile
index 8f05288..631032c 100644
--- a/package/boot/uboot-envtools/Makefile
+++ b/package/boot/uboot-envtools/Makefile
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=uboot-envtools
PKG_DISTNAME:=u-boot
PKG_VERSION:=2013.10
-PKG_RELEASE:=2
+PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_DISTNAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:= \
@@ -41,6 +41,7 @@ define Build/Compile
touch $(PKG_BUILD_DIR)/include/config.h
$(MAKE) -C $(PKG_BUILD_DIR) \
HOSTCC="$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gcc" \
+ HOSTOPTFLAGS="$(TARGET_CFLAGS)" \
HOSTSTRIP="$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)strip" \
env
endef
diff --git a/package/boot/uboot-envtools/patches/001-honor_opt_flags.patch b/package/boot/uboot-envtools/patches/001-honor_opt_flags.patch
new file mode 100644
index 0000000..16c3920
--- /dev/null
+++ b/package/boot/uboot-envtools/patches/001-honor_opt_flags.patch
@@ -0,0 +1,12 @@
+--- a/config.mk
++++ b/config.mk
+@@ -62,7 +62,8 @@ PLATFORM_LDFLAGS =
+
+ #########################################################################
+
+-HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \
++HOSTOPTFLAGS = -O2 -fomit-frame-pointer
++HOSTCFLAGS = -Wall -Wstrict-prototypes $(HOSTOPTFLAGS) \
+ $(HOSTCPPFLAGS)
+ HOSTSTRIP = strip
+