From 8e0ec82eb40db6c24c2ac5b323c8cc278bef8597 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 15 Aug 2010 00:03:20 -0400 Subject: tools: update .gitignore Signed-off-by: Mike Frysinger --- tools/.gitignore | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tools') diff --git a/tools/.gitignore b/tools/.gitignore index cb067a4071..07f21a376e 100644 --- a/tools/.gitignore +++ b/tools/.gitignore @@ -9,3 +9,8 @@ /ubsha1 /inca-swap-bytes /*.exe +/easylogo/easylogo +/env/crc32.c +/env/fw_printenv +/gdb/gdbcont +/gdb/gdbsend -- cgit From abd315a1357ab05e82f0d61ebad666bc0d5378c3 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 15 Aug 2010 00:03:22 -0400 Subject: tools/env: use host build flags Convert the tools/env/Makefile to use the same host tool syntax as the other tool subdirs. Signed-off-by: Mike Frysinger --- tools/env/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/env/Makefile b/tools/env/Makefile index 2df631e98a..f8930401a4 100644 --- a/tools/env/Makefile +++ b/tools/env/Makefile @@ -26,16 +26,16 @@ include $(TOPDIR)/config.mk SRCS := $(obj)crc32.c fw_env.c fw_env_main.c HEADERS := fw_env.h -CPPFLAGS := -Wall -DUSE_HOSTCC -I$(SRCTREE)/include +HOSTCFLAGS += -Wall -DUSE_HOSTCC -I$(SRCTREE)/include ifeq ($(MTD_VERSION),old) -CPPFLAGS += -DMTD_OLD +HOSTCFLAGS += -DMTD_OLD endif all: $(obj)fw_printenv $(obj)fw_printenv: $(SRCS) $(HEADERS) - $(CROSS_COMPILE)gcc $(CPPFLAGS) $(SRCS) -o $(obj)fw_printenv + $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o $@ $(SRCS) clean: rm -f $(obj)fw_printenv $(obj)crc32.c -- cgit From 570d7d50b0915514556dda0875544c42de9b4d56 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 15 Aug 2010 00:03:19 -0400 Subject: tools: enable img2srec for "tools-all" target Signed-off-by: Mike Frysinger --- tools/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') diff --git a/tools/Makefile b/tools/Makefile index b2e73b2ccc..feb8d23a3d 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -41,6 +41,7 @@ include $(TOPDIR)/config.mk # Enable all the config-independent tools ifneq ($(HOST_TOOLS_ALL),) CONFIG_LCD_LOGO = y +CONFIG_CMD_LOADS = y CONFIG_CMD_NET = y CONFIG_INCA_IP = y CONFIG_NETCONSOLE = y -- cgit From ef351fe1f780b7cbc4c25ed4c544cb59fbf86761 Mon Sep 17 00:00:00 2001 From: Timur Tabi Date: Mon, 30 Aug 2010 16:27:31 -0500 Subject: logos: add Freescale logo Add the Freescale logo and update the Makefile to build it when building a Freescale board. Signed-off-by: Timur Tabi --- tools/Makefile | 3 +++ tools/logos/freescale.bmp | Bin 0 -> 46738 bytes 2 files changed, 3 insertions(+) create mode 100644 tools/logos/freescale.bmp (limited to 'tools') diff --git a/tools/Makefile b/tools/Makefile index feb8d23a3d..8ec92d2cbd 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -116,6 +116,9 @@ endif ifeq ($(VENDOR),esd) LOGO_BMP= logos/esd.bmp endif +ifeq ($(VENDOR),freescale) +LOGO_BMP= logos/freescale.bmp +endif ifeq ($(VENDOR),ronetix) LOGO_BMP= logos/ronetix.bmp endif diff --git a/tools/logos/freescale.bmp b/tools/logos/freescale.bmp new file mode 100644 index 0000000000..1589e8073d Binary files /dev/null and b/tools/logos/freescale.bmp differ -- cgit