[U-Boot] [PATCH] Macronix MX25xx MTD SPI flash driver

2009-04-03 Thread Prafulla Wadaskar
From: prafulla_wadaskar prafu...@marvell.com Added macronix SF driver for MTD framework MX25L12805D is supported and tested TBD: sector erase implementation, other deivces support Signed-off-by: prafulla_wadaskar prafu...@marvell.com Tested by: prafulla_wadaskar prafu...@marvell.com ---

[U-Boot] [PATCHv2] OMAP: Fix compile issue

2009-04-03 Thread Sanjeev Premi
Fixes this compile error: board.c: In function 'do_switch_ecc': board.c:339: error: 'cmd_tbl_t' has no member named 'help' make[1]: *** [board.o] Error 1 make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3' make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2

[U-Boot] [PATCH] s3c64xx: move reset_cpu to soc and support the soft reset at s3c6410

2009-04-03 Thread Minkyu Kang
This patch support the soft reset at s3c6410 Signed-off-by: Minkyu Kang mk7.k...@samsung.com --- cpu/arm1176/cpu.c| 16 cpu/arm1176/s3c64xx/interrupts.c | 15 +++ include/s3c6400.h|5 + 3 files changed, 20 insertions(+), 16

[U-Boot] [PATCH 1/2] 85xx: Fix the clock adjust of mpc8569mds board

2009-04-03 Thread Dave Liu
Currently the clk_adj is 6 (3/4 cycle), The settings will cause the DDR controller hang at the data init. Change the clk_adj from 6 to 4 (1/2 cycle), make the memory system stable. Signed-off-by: Dave Liu dave...@freescale.com --- board/freescale/mpc8569mds/ddr.c |2 +- 1 files changed, 1

[U-Boot] [PATCH 2/2] 85xx: add the nfsboot/ramboot to default environment

2009-04-03 Thread Dave Liu
Give the MPC8569MDS board one default environment var. Signed-off-by: Dave Liu dave...@freescale.com --- include/configs/MPC8569MDS.h | 72 -- 1 files changed, 41 insertions(+), 31 deletions(-) diff --git a/include/configs/MPC8569MDS.h

[U-Boot] [PATCH] drivers/usb: regorganisation

2009-04-03 Thread Jean-Christophe PLAGNIOL-VILLARD
move to linux usb driver organisation as following drivers/usb/gadget drivers/usb/host drivers/usb/musb Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Remy Bohmer li...@bohmer.net --- Hi Remy, This version containt everyone ask and is based on the AT91 tree which

Re: [U-Boot] [PATCH] drivers/usb: regorganisation

2009-04-03 Thread Remy Bohmer
Hello Jean-Christophe, 2009/4/3 Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com: move to linux usb driver organisation as following drivers/usb/gadget drivers/usb/host drivers/usb/musb Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Remy Bohmer

Re: [U-Boot] [PATCH] s3c64xx: move reset_cpu to soc and support the soft reset at s3c6410

2009-04-03 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:51 Fri 03 Apr , Minkyu Kang wrote: This patch support the soft reset at s3c6410 Signed-off-by: Minkyu Kang mk7.k...@samsung.com --- cpu/arm1176/cpu.c| 16 cpu/arm1176/s3c64xx/interrupts.c | 15 +++ include/s3c6400.h

Re: [U-Boot] [PATCH v2] at91: change CONFIG_SYS_HZ to 1000

2009-04-03 Thread Detlef Vollmann
Jean-Christophe PLAGNIOL-VILLARD wrote: I've send a new patch that introduce an improve of the clock on at91 which give you the calculated main_clock based on the main crystal and the lowlevel settings I was looking for that patch in git://git.denx.de/u-boot-at91.git, but couldn't find it there

Re: [U-Boot] [PATCH v2] at91: change CONFIG_SYS_HZ to 1000

2009-04-03 Thread Eric BENARD
Detlef Vollmann a écrit : Jean-Christophe PLAGNIOL-VILLARD wrote: I've send a new patch that introduce an improve of the clock on at91 which give you the calculated main_clock based on the main crystal and the lowlevel settings I was looking for that patch in

Re: [U-Boot] [PATCH v2] at91: change CONFIG_SYS_HZ to 1000

2009-04-03 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:20 Fri 03 Apr , Eric BENARD wrote: Detlef Vollmann a écrit : Jean-Christophe PLAGNIOL-VILLARD wrote: I've send a new patch that introduce an improve of the clock on at91 which give you the calculated main_clock based on the main crystal and the lowlevel settings I was looking for

Re: [U-Boot] [PATCH] Macronix MX25xx MTD SPI flash driver

2009-04-03 Thread Mike Frysinger
On Friday 03 April 2009 07:49:19 Prafulla Wadaskar wrote: --- a/drivers/mtd/spi/Makefile +++ b/drivers/mtd/spi/Makefile @@ -28,6 +28,7 @@ LIB := $(obj)libspi_flash.a COBJS-$(CONFIG_SPI_FLASH)+= spi_flash.o COBJS-$(CONFIG_SPI_FLASH_ATMEL) += atmel.o

Re: [U-Boot] [PATCH v2] at91: change CONFIG_SYS_HZ to 1000

2009-04-03 Thread Detlef Vollmann
Jean-Christophe PLAGNIOL-VILLARD wrote: On 15:20 Fri 03 Apr , Eric BENARD wrote: Detlef Vollmann a écrit : Where can I find that patch? http://article.gmane.org/gmane.comp.boot-loaders.u-boot/56837 Thanks. Is it interesting to loose time calculating PLL values at each boot when these

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

2009-04-03 Thread Detlev Zundel
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 changes the types of the registers for the positively packed (1) cases. As the registers truly are

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

2009-04-03 Thread Detlev Zundel
Detlev Zundel d...@denx.de writes: 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 changes the types of the registers for the positively packed (1)

[U-Boot] Uboot bringing an RTOS instead of linux.

2009-04-03 Thread rahanesh
Hi All, I am currently working on OMAP3530 fromMistral solutions. This is the booting sequence in OMAP3530 The OMAP3530 contains a boot ROM starting at location 0x. When power on, the PC register jumps there. The boot ROM then looks at the sys_boot pins to determine boot order. For

Re: [U-Boot] [PATCH v2] at91: change CONFIG_SYS_HZ to 1000

2009-04-03 Thread Jean-Christophe PLAGNIOL-VILLARD
On 16:46 Fri 03 Apr , Detlef Vollmann wrote: Jean-Christophe PLAGNIOL-VILLARD wrote: On 15:20 Fri 03 Apr , Eric BENARD wrote: Detlef Vollmann a écrit : Where can I find that patch? http://article.gmane.org/gmane.comp.boot-loaders.u-boot/56837 Thanks. Is it interesting to loose

Re: [U-Boot] U-boot NAND boot support on Freescale PDK

2009-04-03 Thread alfred steele
Hi Magnus, Thanks for the response:) Until yesterday you were correct. I spent some time updating the published patches to the current u-boot and the status now is that I was able to compile the stuff. Haven't tried it on a PDK board yet but I'm hoping to do that in a couple of days. I will

Re: [U-Boot] [PATCH v2] at91: change CONFIG_SYS_HZ to 1000

2009-04-03 Thread Detlef Vollmann
Eric BENARD wrote: Detlef Vollmann a écrit : I probably agree. (Well, not completely, as I'd like to get rid of at91bootstrap completely and let U-Boot be the original boot code, but that's future.) check Ilko Iliev's patch for pm9263 which integrates at91bootstrap's features in

Re: [U-Boot] Uboot bringing an RTOS instead of linux.

2009-04-03 Thread Jean-Christophe PLAGNIOL-VILLARD
On 20:26 Fri 03 Apr , rahan...@tataelxsi.co.in wrote: Hi All, I am currently working on OMAP3530 fromMistral solutions. This is the booting sequence in OMAP3530 The OMAP3530 contains a boot ROM starting at location 0x. When power on, the PC register jumps there. The boot ROM

Re: [U-Boot] U-boot NAND boot support on Freescale PDK

2009-04-03 Thread Scott Wood
On Fri, Apr 03, 2009 at 10:21:50AM -0500, alfred steele wrote: I wasn't actually sure why there is a need to create a separate linker script like u-boot_nand.lds. The addresses may be different than normal u-boot (though we could take care of that by preprocessing the linker scripts), and you

[U-Boot] [PATCH] PIO Mode Read/Write support for FSL eSDHC

2009-04-03 Thread Dipen Dudhat
PIO mode support for freescale eSDHC Driver. PIO has added to enable data transfer without use of eSDHC DMA Engine. Signed-off-by: Dipen Dudhat dipen.dud...@freescale.com --- drivers/mmc/fsl_esdhc.c | 136 +++ include/fsl_esdhc.h |1 + 2 files

Re: [U-Boot] Help about a simplified bootloader.

2009-04-03 Thread Scott Wood
On Fri, Apr 03, 2009 at 02:44:03PM +0800, os user wrote: I want to boot linux by a simplified bootloader. I use Atmel's ARM chip (AT91SAM9RL64EK board). Now, I can boot linux with my small program. The small program will parse the image generaed by mkimage and copy the kernel bianry from NAND

Re: [U-Boot] [PATCHv2] OMAP: Fix compile issue

2009-04-03 Thread Jean-Christophe PLAGNIOL-VILLARD
On 14:00 Fri 03 Apr , Sanjeev Premi wrote: Fixes this compile error: board.c: In function 'do_switch_ecc': board.c:339: error: 'cmd_tbl_t' has no member named 'help' make[1]: *** [board.o] Error 1 make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'

[U-Boot] Pull request u-boot-blackfin.git

2009-04-03 Thread Mike Frysinger
The following changes since commit dfc91c33957c95da34e3888dc87912d5c15a7603: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-arm are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Mike Frysinger (13): Blackfin:

[U-Boot] Pull request spi flash changes from u-boot-blackfin.git

2009-04-03 Thread Mike Frysinger
The following changes since commit dfc91c33957c95da34e3888dc87912d5c15a7603: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-arm are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git sf Jean-Christophe PLAGNIOL-VILLARD (1): mtd:

[U-Boot] [PATCH] Marvell Feroceon-FR131/Sheeva-88SV131 cpu core support

2009-04-03 Thread Prafulla Wadaskar
This is ARM v5TE-compliant processor core with MMU and L1/L2 Cache Signed-off-by: prafulla_wadaskar prafu...@marvell.com Reviewed by: Ronen Shitrit rshit...@marvell.com --- cpu/arm926ejs/start.S |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/cpu/arm926ejs/start.S

[U-Boot] [PATCH] Marvell 88EXXXX Switch/PHY init support

2009-04-03 Thread Prafulla Wadaskar
From: prafulla_wadaskar prafu...@marvell.com Chips supprted:- 1. 88E61XX 6 port gbe swtich with 5 integrated PHYs 2. 88E6061 6 port fe swtich with 5 integrated PHYs 3. 88E1116 gbe transceiver Contributors: Yotam Admon yo...@marvell.com Michael Blostein michae...@marvell.com Signed-off-by:

[U-Boot] [PATCH] Marvell MV88F6281GTW_GE Board support

2009-04-03 Thread Prafulla Wadaskar
From: prafulla_wadaskar prafu...@marvell.com This is Marvell's 88F6281_A0 based custom board developed for wireless access point product This patch is tested for- 1. Boot from DRAM/SPI flash/NFS 2. File transfer using tftp and loadb 3. SPI flash read/write/erase 4. Booting Linux kernel and RFS

Re: [U-Boot] [PATCH] Marvell 88EXXXX Switch/PHY init support

2009-04-03 Thread Ben Warren
Hi Prafulla, Prafulla Wadaskar wrote: From: prafulla_wadaskar prafu...@marvell.com Chips supprted:- 1. 88E61XX 6 port gbe swtich with 5 integrated PHYs 2. 88E6061 6 port fe swtich with 5 integrated PHYs 3. 88E1116 gbe transceiver Contributors: Yotam Admon yo...@marvell.com Michael

Re: [U-Boot] [PATCH] bin_dep.sh Support

2009-04-03 Thread Wolfgang Denk
Dear Prafulla Wadaskar, In message 1238759359-6544-2-git-send-email-prafu...@marvell.com you wrote: From: prafulla_wadaskar prafu...@marvell.com In some cases the u-boot.bin need to be processed further to create bootable u-boot binary from boot device This processing may be cpu,soc and/or

Re: [U-Boot] Uboot bringing an RTOS instead of linux.

2009-04-03 Thread Wolfgang Denk
Dear rahan...@tataelxsi.co.in, In message vsnlchnfe001eleupih00052...@vsnlchnfe001.vsnlxchange.com you wrote: What is the procedure for bringing an OS from uboot.? As uboot bringing Linux , it needs to bring an RTOS too. The first step you are supposed to perform is reading the available

Re: [U-Boot] [PATCH] Gbe Controller driver support for kirkwood SOCs

2009-04-03 Thread Mike Frysinger
On Friday 03 April 2009 18:39:28 Prafulla Wadaskar wrote: --- a/net/eth.c +++ b/net/eth.c @@ -73,6 +73,7 @@ int board_eth_init(bd_t *bis) __attribute((weak, alias(__def_eth_init))); extern int mv6436x_eth_initialize(bd_t *); extern int mv6446x_eth_initialize(bd_t *); +extern int

Re: [U-Boot] [PATCH] Marvell Feroceon-FR131/Sheeva-88SV131 cpu core support

2009-04-03 Thread Wolfgang Denk
Dear Prafulla Wadaskar, In message 1238798370-9245-1-git-send-email-prafu...@marvell.com you wrote: This is ARM v5TE-compliant processor core with MMU and L1/L2 Cache Signed-off-by: prafulla_wadaskar prafu...@marvell.com Reviewed by: Ronen Shitrit rshit...@marvell.com ---

Re: [U-Boot] [PATCH] Marvell MV88F6281GTW_GE Board support

2009-04-03 Thread Wolfgang Denk
Dear Prafulla Wadaskar, In message 1238798370-9245-5-git-send-email-prafu...@marvell.com you wrote: From: prafulla_wadaskar prafu...@marvell.com This is Marvell's 88F6281_A0 based custom board developed for wireless access point product This patch is tested for- 1. Boot from DRAM/SPI

[U-Boot] Writing a YAFFS image to NAND

2009-04-03 Thread Peter Barada
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? Looking over the nand write/read commands, they look to ignore the OOB data interleaved in the image (i.e. 2048+16 bytes per page for large-block

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

2009-04-03 Thread Scott Wood
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 it). Looking over the nand write/read commands, they look to

Re: [U-Boot] [PATCH] Gbe Controller driver support for kirkwood SOCs

2009-04-03 Thread Ben Warren
Prafulla Wadaskar wrote: From: prafulla_wadaskar prafu...@marvell.com Contributors: Yotam Admon yo...@marvell.com Michael Blostein michae...@marvell.com Signed-off-by: prafulla_wadaskar prafu...@marvell.com Reviewed by: Ronen Shitrit rshit...@marvell.com --- snip diff --git

Re: [U-Boot] [PATCH] Marvell Kirkwood family SOC support

2009-04-03 Thread Wolfgang Denk
Dear Prafulla Wadaskar, In message 1238798370-9245-2-git-send-email-prafu...@marvell.com you wrote: From: prafulla_wadaskar prafu...@marvell.com Kirkwood family controllers are highly integrated SOCs based on Feroceon-88FR131/Sheeva-88SV131 cpu core. SOC versions supported:- 1)

Re: [U-Boot] [PATCH] NetLoop initialization bug

2009-04-03 Thread Wolfgang Denk
Dear Ben Warren, In message 49d5338c.1050...@gmail.com you wrote: Could you please do an additional try to apply the patch produced with git-format-patch. I hope it is OK now. I tried to apply it but it didn't work, but this isn't my usual computer. I'll try on my other machine

Re: [U-Boot] [PATCH 2/2] net: Add Xilinx LL Temac driver

2009-04-03 Thread Wolfgang Denk
Dear Michal, In message 4981658c.7070...@monstr.eu you wrote: I'm really sorry for taking so long getting to this. Mostly little things: it's ok you are busy guy. I removed uninteresting part of code. I added all your reported things to u-boot-microblaze.git net branch. Thanks for pull.

Re: [U-Boot] [PATCH] mflash: Initial mflash support

2009-04-03 Thread Wolfgang Denk
Dear unsik Kim, In message 1235529084-5499-1-git-send-email-donar...@gmail.com you wrote: Mflash is fusion memory device mainly targeted consumer eletronic and mobile phone. Internally, it have nand flash and other hardware logics and supports some different operation (ATA, IO, XIP) modes.

Re: [U-Boot] [PATCH 1/2 V4] cmd_bdinfo: move implementation to arch instead of common

2009-04-03 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 1235453714-5143-1-git-send-email-plagn...@jcrosoft.com you wrote: introduce 3 new weak functions board_bdinfo, cpu_bdinfo and soc_bdinfo to allow board, cpu and soc to print more information Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD

[U-Boot] [RFC 1/5] MX31: Add NAND SPL for i.MX31.

2009-04-03 Thread Magnus Lilja
This patch adds the NAND SPL framework needed to boot i.MX31 boards from NAND. The patch is based on the work by Maxim Artamonov scn1874 at yandex.ru (which was signed-off-by him). -- Changes since V3 (original author's latest post): * Updated to apply on the main U-boot tree as of

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

2009-04-03 Thread Wolfgang Denk
Dear Ben, In message 49a641e4.8000...@denx.de you wrote: [PATCH v2] netloop: updates for NetLoop Fix some issues introduced from commit: 2f70c49e5b9813635ad73666aa30f304c7fdeda9 suggested by Mike Frysinger. - added some comment for the env_id variable in common_cmd_nvedit.c - moved some

Re: [U-Boot] [PATCH 2/2] i.MX31: Add basic support for Freescale's i.MX31 PDK board.

2009-04-03 Thread Magnus Lilja
Wolfgang, 2009/4/3 Wolfgang Denk w...@denx.de: Dear Magnus Lilja, In message 1224746663-12321-2-git-send-email-lilja.mag...@gmail.com you wrote: Add support for the Freescale i.MX31 PDK (a.k.a 3DS) board. Ethernet and MC13873 RTC support is enabled by this patch. Booting from NAND is not

Re: [U-Boot] [PATCH 03/15] tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message 22a383f60a66b6c9baa54dcc1766b3ebde62c873.1236207433.git.pty...@xes-inc.com you wrote: Signed-off-by: Peter Tyser pty...@xes-inc.com --- tools/Makefile | 107 +--- 1 files changed, 55 insertions(+), 52

Re: [U-Boot] [PATCH 04/15] tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message 1939e61f7ae1d5fd4133207ca9935bdfde54d448.1236207433.git.pty...@xes-inc.com you wrote: Signed-off-by: Peter Tyser pty...@xes-inc.com --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk

Re: [U-Boot] [PATCH 05/15] tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message 843a50a7133b20d731e1fb154c749c6d8e701b3a.1236207433.git.pty...@xes-inc.com you wrote: Signed-off-by: Peter Tyser pty...@xes-inc.com --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk

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

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message 14dd76717b4b634d3860b9d7759726e52a9d455d.1236207433.git.pty...@xes-inc.com you wrote: Signed-off-by: Peter Tyser pty...@xes-inc.com --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk

Re: [U-Boot] [PATCH 08/15] tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET

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

Re: [U-Boot] [PATCH 09/15] tools/Makefile: Compile ncb when CONFIG_NETCONSOLE

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message 2b3b8ecc973665b7f706c787318cef12d035ae57.1236207433.git.pty...@xes-inc.com you wrote: Signed-off-by: Peter Tyser pty...@xes-inc.com --- doc/README.NetConsole |6 ++ tools/Makefile|1 + 2 files changed, 3 insertions(+), 4 deletions(-)

Re: [U-Boot] [PATCH 10/15] gen_eth_addr: Use POSIX rand() and srand()

2009-04-03 Thread Wolfgang Denk
Dear Mike Frysinger, In message 200903041853.05083.vap...@gentoo.org you wrote: On Wednesday 04 March 2009 18:33:00 Peter Tyser wrote: Replace random()/srandom() use with rand()/srand() to support compilation with the mingw toolchain i'd add to the changelog that in general, the latter

Re: [U-Boot] [PATCH 10/15] gen_eth_addr: Use POSIX rand() and srand()

2009-04-03 Thread Wolfgang Denk
Dear Peter Tyser, In message 0bca9a93be63621ee791be20c6bd1c33495af517.1236207433.git.pty...@xes-inc.com you wrote: Replace random()/srandom() use with rand()/srand() to support compilation with the mingw toolchain Signed-off-by: Peter Tyser pty...@xes-inc.com --- tools/gen_eth_addr.c |

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 fda9baacdf53470f2653bd04a4677af78798ec49.1236207433.git.pty...@xes-inc.com you wrote: Signed-off-by: Peter Tyser pty...@xes-inc.com --- include/elf.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) Not applied; I understood that we agreed to use

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 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 pty...@xes-inc.com --- tools/Makefile.win32 | 37 - 1 files changed, 0 insertions(+), 37 deletions(-) delete

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 it).

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

[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 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 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 pty...@xes-inc.com --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software

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 pty...@xes-inc.com --- tools/Makefile |7 ++- 1 files changed, 2 insertions(+), 5 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software

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 pty...@xes-inc.com --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software

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 pty...@xes-inc.com --- tools/Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software

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.

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 pty...@xes-inc.com --- Makefile |2 +- tools/.gitignore |1 - tools/Makefile

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 pty...@xes-inc.com --- Makefile |3 +-- tools/.gitignore |5 - tools/Makefile | 32 +++- 3 files changed, 8

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 pty...@xes-inc.com --- tools/Makefile | 13 ++--- 1

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 pty...@xes-inc.com --- Makefile |3 +-- tools/.gitignore |5 - tools/Makefile | 44 +--- 3 files changed,

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 pty...@xes-inc.com --- 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 pty...@xes-inc.com --- tools/Makefile | 55

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. One

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 pty...@xes-inc.com --- tools/Makefile.win32 | 37 - 1 files changed, 0 insertions(+), 37 deletions(-) delete mode 100644

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 changes the

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