]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - common/cmd_boot.c
Patch by Christophe Lindheimer, 20 May 2003:
[karo-tx-uboot.git] / common / cmd_boot.c
index 2fc0729f3f2e7652dcf261842e808d5847e211c7..c2897a23579bca12f79359d8d7ab81d528f1298f 100644 (file)
@@ -332,6 +332,7 @@ load_serial (ulong offset)
                case SREC_DATA3:
                case SREC_DATA4:
                    store_addr = addr + offset;
+#ifndef CFG_NO_FLASH
                    if (addr2info(store_addr)) {
                        int rc;
 
@@ -340,7 +341,9 @@ load_serial (ulong offset)
                                flash_perror (rc);
                                return (~0);
                        }
-                   } else {
+                   } else
+#endif
+                   {
                        memcpy ((char *)(store_addr), binbuf, binlen);
                    }
                    if ((store_addr) < start_addr)