Re: [U-Boot] [PATCH v2 04/12] SPL: Add NOR flash booting support

2012-08-28 Thread Stefan Roese
On 08/27/2012 07:59 PM, Tom Rini wrote: On 08/27/2012 10:29 AM, Daniel Schwierzeck wrote: Hi Stefan, 2012/8/27 Stefan Roese s...@denx.de: SPL NOR flash booting support is quite simple. Only copying of the images is needed. On MPC5xxx we need to make sure to only use the standard memcpy()

[U-Boot] [PATCH v2 04/12] SPL: Add NOR flash booting support

2012-08-27 Thread Stefan Roese
SPL NOR flash booting support is quite simple. Only copying of the images is needed. On MPC5xxx we need to make sure to only use the standard memcpy() implementation and not the MPC5xxx specific one. As the MPC5xxx version has some complexity which is not needed for this SPL booting.

Re: [U-Boot] [PATCH v2 04/12] SPL: Add NOR flash booting support

2012-08-27 Thread Tom Rini
On Mon, Aug 27, 2012 at 12:50:59PM +0200, Stefan Roese wrote: SPL NOR flash booting support is quite simple. Only copying of the images is needed. On MPC5xxx we need to make sure to only use the standard memcpy() implementation and not the MPC5xxx specific one. As the MPC5xxx version has

Re: [U-Boot] [PATCH v2 04/12] SPL: Add NOR flash booting support

2012-08-27 Thread Daniel Schwierzeck
Hi Stefan, 2012/8/27 Stefan Roese s...@denx.de: SPL NOR flash booting support is quite simple. Only copying of the images is needed. On MPC5xxx we need to make sure to only use the standard memcpy() implementation and not the MPC5xxx specific one. As the MPC5xxx version has some complexity

Re: [U-Boot] [PATCH v2 04/12] SPL: Add NOR flash booting support

2012-08-27 Thread Tom Rini
On 08/27/2012 10:29 AM, Daniel Schwierzeck wrote: Hi Stefan, 2012/8/27 Stefan Roese s...@denx.de: SPL NOR flash booting support is quite simple. Only copying of the images is needed. On MPC5xxx we need to make sure to only use the standard memcpy() implementation and not the MPC5xxx