From 8d5c50e5f624ae6c1387bc0cea2346d737f0c2a8 Mon Sep 17 00:00:00 2001 From: juhosg Date: Mon, 24 Oct 2011 21:49:24 +0000 Subject: package/u-boot-envtools: update to version 2011.06. This updates uboot-envtools to the version which comes with U-Boot 2011.06. The important novelity is that fw_setenv now supports batch processing, which greatly improves sysupgrade of the ALL0258N as otherwise we would have to overwrite uboot-env up to 8x in a single firmware upgrade. Unfortunately, no newer version of the sources is available from Debian, so we got to take it from the u-boot source which is kinda ugly... Signed-off-by: Daniel Golle git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28566 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/uboot-envtools/patches/002-makefile.patch | 29 +++++++++++++++-------- 1 file changed, 19 insertions(+), 10 deletions(-) (limited to 'package/uboot-envtools/patches/002-makefile.patch') diff --git a/package/uboot-envtools/patches/002-makefile.patch b/package/uboot-envtools/patches/002-makefile.patch index 9dd8d82a6..ddd08e19d 100644 --- a/package/uboot-envtools/patches/002-makefile.patch +++ b/package/uboot-envtools/patches/002-makefile.patch @@ -1,31 +1,39 @@ --- a/Makefile +++ b/Makefile -@@ -21,12 +21,10 @@ +@@ -21,37 +21,16 @@ # MA 02111-1307 USA # -include $(TOPDIR)/config.mk - - SRCS := $(obj)crc32.c fw_env.c fw_env_main.c +-HOSTSRCS := $(obj)crc32.c fw_env.c fw_env_main.c ++SRCS := crc32.c fw_env.c fw_env_main.c HEADERS := fw_env.h --CPPFLAGS := -Wall -DUSE_HOSTCC -I$(SRCTREE)/include +-# 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 +CPPFLAGS := -Wall $(CFLAGS) - ifeq ($(MTD_VERSION),old) - CPPFLAGS += -DMTD_OLD -@@ -35,18 +33,7 @@ endif all: $(obj)fw_printenv - $(obj)fw_printenv: $(SRCS) $(HEADERS) -- $(CROSS_COMPILE)gcc $(CPPFLAGS) $(SRCS) -o $(obj)fw_printenv + # Some files complain if compiled with -pedantic, use HOSTCFLAGS_NOPED +-$(obj)fw_printenv: $(HOSTSRCS) $(HEADERS) +- $(HOSTCC) $(HOSTCFLAGS_NOPED) $(HOSTLDFLAGS) -o $@ $(HOSTSRCS) ++$(obj)fw_printenv: $(SRCS) $(HEADERS) + $(CC) $(CPPFLAGS) $(SRCS) -o $(obj)fw_printenv clean: - rm -f $(obj)fw_printenv $(obj)crc32.c +- rm -f $(obj)fw_printenv $(obj)crc32.c - -$(obj)crc32.c: -- ln -s $(src)../../lib_generic/crc32.c $(obj)crc32.c +- ln -s $(src)../../lib/crc32.c $(obj)crc32.c - -######################################################################### - @@ -34,3 +42,4 @@ -sinclude $(obj).depend - -######################################################################### ++ rm -f $(obj)fw_printenv -- cgit v1.2.3