Re: [U-Boot] [U-BOOT] [PATCH] bootm: replace blob_start with image_start

2011-01-10 Thread Lei Wen
On Mon, Jan 10, 2011 at 5:45 PM, Mike Frysinger wrote: > On Mon, Jan 10, 2011 at 4:31 AM, Lei Wen wrote: >>        case IH_COMP_NONE: >> -               if (load == blob_start) { >> +               if (load == image_start) { >>                        printf ("   XIP %s ... ", type_name); > > this

Re: [U-Boot] [U-BOOT] [PATCH] bootm: replace blob_start with image_start

2011-01-10 Thread Mike Frysinger
On Mon, Jan 10, 2011 at 4:31 AM, Lei Wen wrote: >        case IH_COMP_NONE: > -               if (load == blob_start) { > +               if (load == image_start) { >                        printf ("   XIP %s ... ", type_name); this breaks XIP uImages that are created to work with existing u-boots

[U-Boot] [U-BOOT] [PATCH] bootm: replace blob_start with image_start

2011-01-10 Thread Lei Wen
For uImage always has a 64 bytes header, we couldn't expect to do the xip from the header but should xip from the image start. The latter logic in that section is also move the image from image_start to the load address, so sync this logic to the xip operation. Signed-off-by: Lei Wen --- common