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.  it'd be annoying to no longer be able to boot uImages that
were working, and update kernel build systems that output those uImage
formats.

so could you add your check as an additional one ?
if (load == blob_start || load == image_start) {
    ...
-mike
_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to