Skip to content
Snippets Groups Projects
Commit 59de2ed6 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Patch by Christophe Lindheimer, 20 May 2003:

allow the use of CFG_LOADS when CFG_NO_FLASH is set
parent 86d82762
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
Changes since U-Boot 0.3.1: Changes since U-Boot 0.3.1:
====================================================================== ======================================================================
* Patch by Christophe Lindheimer, 20 May 2003:
allow the use of CFG_LOADS when CFG_NO_FLASH is set
* Fix SDRAM timing on Purple board * Fix SDRAM timing on Purple board
* Add support for CompactFlash on ATC board * Add support for CompactFlash on ATC board
......
...@@ -332,6 +332,7 @@ load_serial (ulong offset) ...@@ -332,6 +332,7 @@ load_serial (ulong offset)
case SREC_DATA3: case SREC_DATA3:
case SREC_DATA4: case SREC_DATA4:
store_addr = addr + offset; store_addr = addr + offset;
#ifndef CFG_NO_FLASH
if (addr2info(store_addr)) { if (addr2info(store_addr)) {
int rc; int rc;
...@@ -340,7 +341,9 @@ load_serial (ulong offset) ...@@ -340,7 +341,9 @@ load_serial (ulong offset)
flash_perror (rc); flash_perror (rc);
return (~0); return (~0);
} }
} else { } else
#endif
{
memcpy ((char *)(store_addr), binbuf, binlen); memcpy ((char *)(store_addr), binbuf, binlen);
} }
if ((store_addr) < start_addr) if ((store_addr) < start_addr)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment