Re: [U-Boot-Users] RFC: Concise Build Output

2008-01-23 Thread Jean-Christophe PLAGNIOL-VILLARD
On 16:11 Wed 23 Jan , Jon Loeliger wrote: Folks, In the spirit of the Linux and Git build systems, I have a modified U-Boot build system that supports a much more concise output! One of the primary motivations for this style of output is that it will very readily highlight build

Re: [U-Boot-Users] U-boot on Avila GW2355 platform : UART not working

2008-01-19 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:13 Fri 18 Jan , Ranjit Deshpande wrote: Mahesh, I am not aware of the GW2355 and if it was a custom design since Gateworks does do custom boards. For their current retail offerings I had posted a patch a few months ago:

Re: [U-Boot-Users] [PATCH] common/miiphyutil.c: Cleanup MII_DEBUG and debug()

2008-01-19 Thread Jean-Christophe PLAGNIOL-VILLARD
I think we should start to use CONFIG_ to simplify the migration go kconfig ang suggest to use CONFIG_MII_DEBUG Best Regards, J. Le 19 janv. 08 à 02:25, Shinya Kuribayashi [EMAIL PROTECTED] a écrit : Current MII_DEBUG is confusing in two ways. One is useless define- then- undef at the

Re: [U-Boot-Users] [PATCH 3/3] ppc_4xx: Add MCU25 board specific failes

2008-01-19 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:56 Fri 18 Jan , Niklaus Giger wrote: Add PPC405GPr based MCU25 board from Netstal. Signed-off-by: Niklaus Giger [EMAIL PROTECTED] --- board/netstal/mcu25/Makefile | 60 +++ board/netstal/mcu25/README.txt | 60 +++ board/netstal/mcu25/config.mk | 29

[U-Boot-Users] [PATCH 1/1] Fix nfs command help to reflect that the serverip is optional

2008-01-17 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] diff --git a/common/cmd_net.c b/common/cmd_net.c index b86ca86..dbf6b86 100644 --- a/common/cmd_net.c +++ b/common/cmd_net.c @@ -87,7 +87,7 @@ int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) U_BOOT_CMD

Re: [U-Boot-Users] resend #4: [PATCH 4/5]: add AcTux-3 board support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 09:16 Wed 16 Jan , Michael Schwingen wrote: Jean-Christophe PLAGNIOL-VILLARD wrote: +void reset_phy (void) +{ + int i; + + /* initialize the PHY */ + miiphy_reset (NPE0, CONFIG_PHY_ADDR); + + /* all LED outputs = Link/Act */ + miiphy_write (NPE0, CONFIG_PHY_ADDR

Re: [U-Boot-Users] [PATCH] TFTP: add host ip addr support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:49 Wed 16 Jan , Ben Warren wrote: Jean-Christophe PLAGNIOL-VILLARD wrote: On 22:19 Tue 15 Jan , Ben Warren wrote: Jean-Christophe PLAGNIOL-VILLARD wrote: allow to use a different server as set in serverip Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL

Re: [U-Boot-Users] [PATCH] TFTP: add host ip addr support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:26 Wed 16 Jan , Wolfgang Denk wrote: In message [EMAIL PROTECTED] you wrote: #define MAX_LEN 80 static char tftp_filename[MAX_LEN]; strncpy(tftp_filename, str, MAX_LEN); tftp_filename[MAX_LEN-1] = 0; May be truncated, but never overruns. Acked-by: [EMAIL PROTECTED]

Re: [U-Boot-Users] resend #5: [PATCH 5/5]: add AcTux-4 board support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:53 Wed 16 Jan , Michael Schwingen wrote: Signed-off-by: Michael Schwingen [EMAIL PROTECTED] diff --git a/board/actux4/Makefile b/board/actux4/Makefile new file mode 100644 index 000..845af93 --- /dev/null Ack. Best Regards. J.

Re: [U-Boot-Users] resend #5: [PATCH 3/5]: add AcTux-2 board support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:51 Wed 16 Jan , Michael Schwingen wrote: Signed-off-by: Michael Schwingen [EMAIL PROTECTED] diff --git a/board/actux2/Makefile b/board/actux2/Makefile new file mode 100644 Ack. Best Regards, J. - This SF.net

Re: [U-Boot-Users] resend #5: [PATCH 2/5]: add AcTux-1 board support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:50 Wed 16 Jan , Michael Schwingen wrote: Signed-off-by: Michael Schwingen [EMAIL PROTECTED] diff --git a/board/actux1/Makefile b/board/actux1/Makefile new file mode 100644 index 000..83611e7 + +#if (CONFIG_COMMANDS CFG_CMD_PCI) || defined(CONFIG_PCI) +extern struct

Re: [U-Boot-Users] resend #4: [PATCH 4/5]: add AcTux-3 board support

2008-01-15 Thread Jean-Christophe PLAGNIOL-VILLARD
On 20:12 Tue 15 Jan , Michael Schwingen wrote: Signed-off-by: Michael Schwingen [EMAIL PROTECTED] diff --git a/board/actux3/Makefile b/board/actux3/Makefile new file mode 100644 index 000..f6168c3 --- /dev/null +++ b/board/actux3/Makefile @@ -0,0 +1,50 @@ +# +int dram_init

[U-Boot-Users] [PATCH] cmd_nand : fix compiler warning.

2008-01-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED] diff --git a/common/cmd_nand.c b/common/cmd_nand.c index b248a2c..8d6c959 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -350,10 +350,10 @@ int do_nand(cmd_tbl_t * cmdtp, int flag, int argc, char *argv

<    1   2   3   4