summaryrefslogtreecommitdiff
path: root/package/boot/uboot-envtools/patches/002-makefile.patch
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2013-03-15 01:36:53 +0000
committerLuka Perkov <luka@openwrt.org>2013-03-15 01:36:53 +0000
commitfe24afe37fcc95b915489a3ca9fa970513e6ee1c (patch)
tree1746bb52031b6c443d1a25c63413afdd3e29b61c /package/boot/uboot-envtools/patches/002-makefile.patch
parent4bcc3cd7b235774b9a179dd475b275e2f4890304 (diff)
downloadmtk-20170518-fe24afe37fcc95b915489a3ca9fa970513e6ee1c.zip
mtk-20170518-fe24afe37fcc95b915489a3ca9fa970513e6ee1c.tar.gz
mtk-20170518-fe24afe37fcc95b915489a3ca9fa970513e6ee1c.tar.bz2
uboot-envtools: upgrade to version 2013.01.01
Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 36033
Diffstat (limited to 'package/boot/uboot-envtools/patches/002-makefile.patch')
-rw-r--r--package/boot/uboot-envtools/patches/002-makefile.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/package/boot/uboot-envtools/patches/002-makefile.patch b/package/boot/uboot-envtools/patches/002-makefile.patch
deleted file mode 100644
index b18bff6..0000000
--- a/package/boot/uboot-envtools/patches/002-makefile.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -21,34 +21,17 @@
- # MA 02111-1307 USA
- #
-
--include $(TOPDIR)/config.mk
--
--HOSTSRCS := $(SRCTREE)/lib/crc32.c fw_env.c fw_env_main.c
-+SRCS := crc32.c fw_env.c fw_env_main.c
- HEADERS := fw_env.h
-
--# Compile for a hosted environment on the target
--HOSTCPPFLAGS = -idirafter $(SRCTREE)/include \
-- -idirafter $(OBJTREE)/include2 \
-- -idirafter $(OBJTREE)/include \
-- -DUSE_HOSTCC
--
--ifeq ($(MTD_VERSION),old)
--HOSTCPPFLAGS += -DMTD_OLD
--endif
--
--all: $(obj)fw_printenv
--
--# Some files complain if compiled with -pedantic, use HOSTCFLAGS_NOPED
--$(obj)fw_printenv: $(HOSTSRCS) $(HEADERS)
-- $(HOSTCC) $(HOSTCFLAGS_NOPED) $(HOSTLDFLAGS) -o $@ $(HOSTSRCS)
-+CPPFLAGS := -Wall $(CFLAGS)
-
--clean:
-- rm -f $(obj)fw_printenv
-+all: fw_printenv
-
--#########################################################################
-+fw_printenv: $(SRCS) $(HEADERS)
-+ $(CC) $(CPPFLAGS) $(SRCS) -o fw_printenv
-
--include $(TOPDIR)/rules.mk
--
--sinclude $(obj).depend
-+clean:
-+ rm -f fw_printenv
-
- #########################################################################