Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-25 Thread Prafulla Wadaskar
-Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot- boun...@lists.denx.de] On Behalf Of Daniel Stodden Sent: 24 April 2012 11:37 To: U-Boot Subject: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link. Hi Daniel Pls maintain change log, each

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-25 Thread Wolfgang Denk
Dear Daniel Stodden, In message 1335325799.8304.15.camel@ramone you wrote: Why not use something like: BIN_FILES-$(CONFIG_KIRKWOOD) += kwboot$(SFX) Huh? I don't know u-boot's build system very well, but normally CONFIG items are employed to keep the target lean. Where the best you

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-25 Thread Luka Perkov
Hi Daniel, On Wed, Apr 25, 2012 at 02:34:07PM +0200, Wolfgang Denk wrote: In message 1335325799.8304.15.camel@ramone you wrote: Why not use something like: BIN_FILES-$(CONFIG_KIRKWOOD) += kwboot$(SFX) Huh? I don't know u-boot's build system very well, but normally CONFIG

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-24 Thread Daniel Stodden
Hi. Thanks for the instructions. Latest kwboot patch follow here, fully reindented and thereby passing checkpatch without warnings. Thanks, Daniel ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-24 Thread Daniel Stodden
The kwboot program boots boards based on Marvell's Kirkwood platform via Xmodem over their integrated UART. Signed-off-by: Daniel Stodden daniel.stod...@googlemail.com --- doc/kwboot.1 | 84 +++ tools/Makefile |6 + tools/kwboot.c | 750

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-24 Thread Luka Perkov
Hi Daniel, On Mon, Apr 23, 2012 at 11:07:21PM -0700, Daniel Stodden wrote: The kwboot program boots boards based on Marvell's Kirkwood platform via Xmodem over their integrated UART. Signed-off-by: Daniel Stodden daniel.stod...@googlemail.com --- doc/kwboot.1 | 84 +++

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-24 Thread Daniel Stodden
On Tue, 2012-04-24 at 22:28 +0200, Luka Perkov wrote: Hi Daniel, On Mon, Apr 23, 2012 at 11:07:21PM -0700, Daniel Stodden wrote: The kwboot program boots boards based on Marvell's Kirkwood platform via Xmodem over their integrated UART. Signed-off-by: Daniel Stodden

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-24 Thread Luka Perkov
Hi Daniel, I want to say that this works on my kirkwood board ib62x0. Nice work. I have only a few suggestions... On Mon, Apr 23, 2012 at 11:07:21PM -0700, Daniel Stodden wrote: +.SH NAME +kwboot \- Boot Marvell Kirkwood SoCs over a serial link. +.SH SYNOPSIS +.B kwboot +.RB [ -b

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-24 Thread Daniel Stodden
On Wed, 2012-04-25 at 02:08 +0200, Luka Perkov wrote: Hi Daniel, I want to say that this works on my kirkwood board ib62x0. Nice work. I have only a few suggestions... On Mon, Apr 23, 2012 at 11:07:21PM -0700, Daniel Stodden wrote: +.SH NAME +kwboot \- Boot Marvell Kirkwood SoCs over

[U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-23 Thread Daniel Stodden
The kwboot program boots boards based on Marvell's Kirkwood platform via Xmodem over their integrated UART. Signed-off-by: Daniel Stodden daniel.stod...@googlemail.com --- doc/kwboot.1 | 84 +++ tools/Makefile |6 + tools/kwboot.c | 750

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-23 Thread Wolfgang Denk
Dear Daniel Stodden, In message 1335128131-25552-1-git-send-email-daniel.stod...@googlemail.com you wrote: The kwboot program boots boards based on Marvell's Kirkwood platform via Xmodem over their integrated UART. Signed-off-by: Daniel Stodden daniel.stod...@googlemail.com ---