[U-Boot] [U-BOOT] [PATCH] bootm: replace blob_start with image_start
Mike Frysinger
vapier at gentoo.org
Mon Jan 10 10:45:54 CET 2011
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
More information about the U-Boot
mailing list