Re: [U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-07 Thread Stefano Babic
On 07/03/2012 20:30, Tom Rini wrote: > On Wed, Mar 7, 2012 at 12:10 PM, Mikhail Kshevetskiy > wrote: >> On Wed, 7 Mar 2012 08:25:39 -0700 >> Tom Rini wrote: >> >>> On Wed, Mar 07, 2012 at 12:54:05AM +0400, Mikhail Kshevetskiy wrote: >>> We have an omap l138 based board without jtag and empty

[U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-07 Thread Christian Riesch
Hi, On Wednesday, March 7, 2012, Mikhail Kshevetskiy < mikhail.kshevets...@gmail.com> wrote: > On Tue, 6 Mar 2012 22:28:46 + > Laurence Withers wrote: > >> On Wed, Mar 07, 2012 at 12:54:05AM +0400, Mikhail Kshevetskiy wrote: >> > We have an omap l138 based board without jtag and empty spi fla

Re: [U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-07 Thread Tom Rini
On Wed, Mar 7, 2012 at 12:10 PM, Mikhail Kshevetskiy wrote: > On Wed, 7 Mar 2012 08:25:39 -0700 > Tom Rini wrote: > >> On Wed, Mar 07, 2012 at 12:54:05AM +0400, Mikhail Kshevetskiy wrote: >> >> > We have an omap l138 based board without jtag and empty spi flash. >> > UART is an only way to load s

Re: [U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-07 Thread Mikhail Kshevetskiy
On Wed, 7 Mar 2012 08:25:39 -0700 Tom Rini wrote: > On Wed, Mar 07, 2012 at 12:54:05AM +0400, Mikhail Kshevetskiy wrote: > > > We have an omap l138 based board without jtag and empty spi flash. > > UART is an only way to load something on this board, so we are using > > uart to load spl image u-

Re: [U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-07 Thread Tom Rini
On Wed, Mar 07, 2012 at 12:54:05AM +0400, Mikhail Kshevetskiy wrote: > We have an omap l138 based board without jtag and empty spi flash. > UART is an only way to load something on this board, so we are using > uart to load spl image u-boot and then we are using ymodem to load > the rest part of u

Re: [U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-06 Thread Mikhail Kshevetskiy
On Tue, 6 Mar 2012 22:28:46 + Laurence Withers wrote: > On Wed, Mar 07, 2012 at 12:54:05AM +0400, Mikhail Kshevetskiy wrote: > > We have an omap l138 based board without jtag and empty spi flash. > > UART is an only way to load something on this board, so we are using > > uart to load spl ima

Re: [U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-06 Thread Mikhail Kshevetskiy
On Tue, 6 Mar 2012 18:34:05 -0300 Fabio Estevam wrote: > On Tue, Mar 6, 2012 at 5:54 PM, Mikhail Kshevetskiy > wrote: > > We have an omap l138 based board without jtag and empty spi flash. > > UART is an only way to load something on this board, so we are using > > uart to load spl image u-boot

Re: [U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-06 Thread Laurence Withers
On Wed, Mar 07, 2012 at 12:54:05AM +0400, Mikhail Kshevetskiy wrote: > We have an omap l138 based board without jtag and empty spi flash. > UART is an only way to load something on this board, so we are using > uart to load spl image u-boot and then we are using ymodem to load > the rest part of u-

Re: [U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-06 Thread Fabio Estevam
On Tue, Mar 6, 2012 at 5:54 PM, Mikhail Kshevetskiy wrote: > We have an omap l138 based board without jtag and empty spi flash. > UART is an only way to load something on this board, so we are using > uart to load spl image u-boot and then we are using ymodem to load > the rest part of u-boot. > -

[U-Boot] [PATCH 1/3] spl: add ymodem support

2012-03-06 Thread Mikhail Kshevetskiy
We have an omap l138 based board without jtag and empty spi flash. UART is an only way to load something on this board, so we are using uart to load spl image u-boot and then we are using ymodem to load the rest part of u-boot. --- arch/arm/cpu/arm926ejs/davinci/spl.c | 25 +++ commo