]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - common/cmd_bootm.c
cmd_bootm.c: Only say XIP image when load is image_start
[karo-tx-uboot.git] / common / cmd_bootm.c
index c243a5bd78a92ec55fb7d8f2feefe51f7fc9589a..e683af36916171a0d4962fc3a013457caf09eb44 100644 (file)
@@ -388,7 +388,7 @@ static int bootm_load_os(bootm_headers_t *images, unsigned long *load_end,
        image_buf = map_sysmem(image_start, image_len);
        switch (comp) {
        case IH_COMP_NONE:
-               if (load == blob_start || load == image_start) {
+               if (load == image_start) {
                        printf("   XIP %s ... ", type_name);
                        no_overlap = 1;
                } else {