Re: [U-Boot] [PATCH 11/15] elf.h: Add missing int32_t typedef for WIN32 compilers

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message you wrote: > Signed-off-by: Peter Tyser > --- > include/elf.h |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) Not applied; I understood that we agreed to use stdint.h instead. PLease verify. Best regards, Wolfgang Denk -- DENX Software Engineerin

Re: [U-Boot] [PATCH 12/15] Add support for building native win32 tools

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <3c6c8b0c8a5a0dacbd19c414465b312cb0256a7d.1236207433.git.pty...@xes-inc.com> you wrote: > Add support for compiling the host tools in the tools directory using > the MinGW toolchain. This produces executables which can be used on > standard Windows computers without

Re: [U-Boot] [PATCH 13/15] Makefile: Add removal of *.exe file to clean target

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message you wrote: > Signed-off-by: Peter Tyser > --- > Makefile |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Off

Re: [U-Boot] [PATCH 14/15] Deleted unused tools/Makefile.win32

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <8660452a3722e000f523eaaa906cea2c519b8cb0.1236207433.git.pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile.win32 | 37 - > 1 files changed, 0 insertions(+), 37 deletions(-) > delete mode 100644

[U-Boot] (no subject)

2009-04-03 Thread Neeraj Tandon
Hi, I am using u-boot version 2009.3-rc1 for TI Davinci t467 EVM. I built the u-boot.bin for NAND flash. My only mdoification was in file include/configs/davinci_devevm.h where I #define CONFIG_SYS_USE_NAND. I built this and flashed this using TI provide sfh_DM6467.exe. The flashng goes well

Re: [U-Boot] [PATCH 15/15] common/Makefile: Conditionally compile env_embedded.o

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <160374df5e47fe9ec65c3b5ddff7edb5c63b5aa7.1236207433.git.pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > common/Makefile |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Soft

Re: [U-Boot] Writing a YAFFS image to NAND

2009-04-03 Thread Mike Frysinger
On Friday 03 April 2009 14:54:06 Scott Wood wrote: > Peter Barada wrote: > > Is there support in the 2009.03 version of U-boot to allow writing a > > YAFFS image created by mkyaffs2image to NAND, including the meta-data in > > the OOB? > > Not that I know of (unless something in cmd_yaffs2.c can do

Re: [U-Boot] DM6467 U-boot Nand flash question

2009-04-03 Thread Neeraj Tandon
Hi All, Hi, Sorry I hit the send before typing subject of previous mail. Repeating the contents in this mail: I am using u-boot version 2009.3-rc1 for TI Davinci t467 EVM. I built the u-boot.bin for NAND flash. My only mdoification was in file include/configs/davinci_devevm.h where I #defin

[U-Boot] [PATCH] NetLoop initialization bug

2009-04-03 Thread Michael Zaidman
The patch fixes the bug of partial initialization of global network parameters. Upon u-boot's start up the first ping command causes a failure of the consequent TFTP command. It happens in the recently added mechanism of the NetLoop initialization where initialization of global network parameters

[U-Boot] unassigned-patches/37: [PATCH] NetLoop initialization bug

2009-04-03 Thread u-boot
The patch fixes the bug of partial initialization of global network parameters. Upon u-boot's start up the first ping command causes a failure of the consequent TFTP command. It happens in the recently added mechanism of the NetLoop initialization where initialization of global network parameters

Re: [U-Boot] [PATCH/next v3 00/28] tools/Makefile cleanup and win32 tool support

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-1-git-send-email-pty...@xes-inc.com> you wrote: > This patch series attempts to do 2 things: > 1. Add support for generating win32 versions of the tools in tools/ > 2. Cleanup tools/Makefile somewhat Ouch. I missed that there were updated versions of

Re: [U-Boot] [PATCH/next v3 01/28] Makefile: Make autoconf.mk a dependency of the depend target

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-2-git-send-email-pty...@xes-inc.com> you wrote: > The original code did not generate autoconf.mk until after some targets > dependencies had already been calculated, for example the directories in > the SUBDIRS variable > > Signed-off-by: Peter Tyser

Re: [U-Boot] [PATCH/next v3 02/28] Makefile: Add removal of *.exe files to clean target

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-3-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > Makefile |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD:

Re: [U-Boot] [PATCH/next v3 03/28] common/Makefile: Conditionally compile env_embedded.o

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-4-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > common/Makefile |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

Re: [U-Boot] [PATCH/next v3 04/28] elf.h: Use stdint.h to provide standard typedefs for WIN32

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-5-git-send-email-pty...@xes-inc.com> you wrote: > The original code provided an incomplete set of typedefs for WIN32 > compiles and replicated the standard typedefs that are already > provided by stdint.h > > Signed-off-by: Peter Tyser > --- > incl

Re: [U-Boot] [PATCH/next v3 05/28] Rename include/zlib.h to include/u-boot/zlib.h

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-6-git-send-email-pty...@xes-inc.com> you wrote: > Some systems have zlib.h installed in /usr/include/. This isn't the > desired file (we want the one in include/zlib.h). Moving U-Boot's > zlib.h to include/u-boot/ avoids this conflict. > > Signed-o

Re: [U-Boot] [PATCH/next v3 06/28] Rename include/bzlib.h to include/u-boot/bzlib.h

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-7-git-send-email-pty...@xes-inc.com> you wrote: > Some systems have bzlib.h installed in /usr/include/. This isn't the > desired file (we want the one in include/bzlib.h). Moving U-Boot's > bzlib.h to include/u-boot/ avoids this conflict. > > Signe

Re: [U-Boot] [PATCH/next v3 07/28] gen_eth_addr: Use POSIX rand() and srand()

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-8-git-send-email-pty...@xes-inc.com> you wrote: > Replace random()/srandom() use with rand()/srand() to support > compilation with the mingw toolchain. The rand()/srand() functions are > generally more common and are functionally equivalent to the or

Re: [U-Boot] [PATCH/next v3 08/28] tools/Makefile: Remove HOSTARCH HOSTOS defines

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-9-git-send-email-pty...@xes-inc.com> you wrote: > The values of HOSTARCH and HOSTOS which are exported from the top-level > Makefile should be used > > Signed-off-by: Peter Tyser > --- > tools/Makefile | 12 > 1 files changed, 0 inse

Re: [U-Boot] [PATCH/next v3 09/28] tools/Makefile: Remove inappropriate double-tabs

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-10-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile | 153 > > 1 files changed, 77 insertions(+), 76 deletions(-) Applied, thanks. Best reg

Re: [U-Boot] [PATCH/next v3 10/28] tools/Makefile: Split variable declarations into multiple lines

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-11-git-send-email-pty...@xes-inc.com> you wrote: > Split variable declarations into multiple lines and use the standard > VAR-y convention. Also move object and binary variable declarations to > after config.mk has been included to allow for these li

Re: [U-Boot] [PATCH/next v3 11/28] tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-12-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile | 11 --- > 1 files changed, 8 insertions(+), 3 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineerin

Re: [U-Boot] [PATCH/next v3 12/28] tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-13-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

Re: [U-Boot] [PATCH/next v3 13/28] tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-14-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

Re: [U-Boot] [PATCH/next v3 14/28] tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-15-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile |7 ++- > 1 files changed, 2 insertions(+), 5 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering Gm

Re: [U-Boot] [PATCH/next v3 15/28] tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-16-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

Re: [U-Boot] [PATCH/next v3 16/28] tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-17-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

Re: [U-Boot] [PATCH/next v3 17/28] tools/Makefile: Compile ncb when CONFIG_NETCONSOLE

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-18-git-send-email-pty...@xes-inc.com> you wrote: > Also conditionally add ncb.o to OBJ_FILES list > > Signed-off-by: Peter Tyser > --- > doc/README.NetConsole |6 ++ > tools/Makefile|2 ++ > 2 files changed, 4 insertions(+), 4 d

Re: [U-Boot] [PATCH/next v3 18/28] tools/Makefile: Add tools/ to the include search path

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-19-git-send-email-pty...@xes-inc.com> you wrote: > This change makes the process of symlinking mkimage.h and fdt_host.h > unnecessary > > Signed-off-by: Peter Tyser > --- > tools/Makefile |7 +-- > 1 files changed, 1 insertions(+), 6 deleti

Re: [U-Boot] [PATCH/next v3 19/28] tools: Remove unecessary symlinking of zlib.h

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-20-git-send-email-pty...@xes-inc.com> you wrote: > crc32.c uses the zlib.h header in include/u-boot/zlib.h. The symlink > was previously necessary to give U-Boot's version of zlib.h precedence > over the host computer's version of zlib.h. > > Signed

Re: [U-Boot] [PATCH/next v3 20/28] tools/Makefile: Add libfdt/ to the include search path

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-21-git-send-email-pty...@xes-inc.com> you wrote: > This change makes the process of symlinking libfdt_internal.h > unnecessary > > Signed-off-by: Peter Tyser > --- > Makefile |2 +- > tools/.gitignore |1 - > tools/Makefile | 15

Re: [U-Boot] [PATCH/next v3 21/28] tools/Makefile: Remove symlinks for fdt targets

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-22-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > Makefile |3 +-- > tools/.gitignore |5 - > tools/Makefile | 32 +++- > 3 files changed, 8 insertions(+), 32 de

Re: [U-Boot] [PATCH/next v3 22/28] tools/Makefile: Dynamically generate libfdt object dependencies

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-23-git-send-email-pty...@xes-inc.com> you wrote: > Add the libfdt files to the SRCS variable so that they have their > dependencies automatically generated > > Signed-off-by: Peter Tyser > --- > tools/Makefile | 13 ++--- > 1 files change

Re: [U-Boot] [PATCH/next v3 23/28] tools/Makefile: Remove symlinks for remaining source files

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-24-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > Makefile |3 +-- > tools/.gitignore |5 - > tools/Makefile | 44 +--- > 3 files changed, 14 inserti

Re: [U-Boot] [PATCH/next v3 24/28] tools/Makefile: Use auto-generated object file dependencies

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-25-git-send-email-pty...@xes-inc.com> you wrote: > Files in the SRCS variable have their dependencies automatically > generated so remove duplicate explicit dependencies > > Signed-off-by: Peter Tyser > --- > tools/Makefile | 24 -

Re: [U-Boot] [PATCH/next v3 25/28] tools/Makefile: Create generic build rules

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-26-git-send-email-pty...@xes-inc.com> you wrote: > Create a few generic build rules to replace the current method which has > 1 build target for each file > > Signed-off-by: Peter Tyser > --- > tools/Makefile | 55 +---

Re: [U-Boot] [PATCH/next v3 26/28] tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-27-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile | 17 + > 1 files changed, 5 insertions(+), 12 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Eng

Re: [U-Boot] [PATCH/next v3 27/28] Add support for building native win32 tools

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-28-git-send-email-pty...@xes-inc.com> you wrote: > Add support for compiling the host tools in the tools directory using > the MinGW toolchain. This produces executables which can be used on > standard Windows computers without requiring cygwin. > >

Re: [U-Boot] [PATCH/next v3 28/28] Delete now unused tools/Makefile.win32

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message <1236988492-21295-29-git-send-email-pty...@xes-inc.com> you wrote: > Signed-off-by: Peter Tyser > --- > tools/Makefile.win32 | 37 - > 1 files changed, 0 insertions(+), 37 deletions(-) > delete mode 100644 tools/Makefile.win32

Re: [U-Boot] [PATCH] include/ns16550.h: Unify structure declaration for registers

2009-04-03 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1238769946-30370-1-git-send-email-...@denx.de> you wrote: > Instead of special casing the different access patterns, use common > code with light macros sprinkled in to accomodate for the different > layouts of the register structure. > > Note that this also change

Re: [U-Boot] [PATCH v2] netloop: updates for NetLoop

2009-04-03 Thread Michael Zaidman
Dear Wolfgang & Ben, > > Ditto for this one: > > http://article.gmane.org/gmane.comp.boot-loaders.u-boot/55341 The patch content is obsolete due to the "NetLoop initialization bug" fix. Regards, Michael ___ U-Boot mailing list U-Boot@lists.denx.de http

<    1   2