Patch by Christophe Lindheimer, 20 May 2003:

allow the use of CFG_LOADS when CFG_NO_FLASH is set
This commit is contained in:
wdenk 2003-05-20 10:58:04 +00:00
parent 86d82762f6
commit 59de2ed6b5
2 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,9 @@
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
* Add support for CompactFlash on ATC board

View 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)