diff options
| author | wdenk <wdenk> | 2003-05-20 10:58:04 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-05-20 10:58:04 +0000 | 
| commit | 59de2ed6b5631c709d6e9c6dce7c0bffdf5a2058 (patch) | |
| tree | 54e2c2fd8c76243c01544c041bb3002d0d895e5f /common/cmd_boot.c | |
| parent | 86d82762f685c4554e24628838b19e93c9a38001 (diff) | |
| download | olio-uboot-2014.01-59de2ed6b5631c709d6e9c6dce7c0bffdf5a2058.tar.xz olio-uboot-2014.01-59de2ed6b5631c709d6e9c6dce7c0bffdf5a2058.zip | |
Patch by Christophe Lindheimer, 20 May 2003:
allow the use of CFG_LOADS when CFG_NO_FLASH is set
Diffstat (limited to 'common/cmd_boot.c')
| -rw-r--r-- | common/cmd_boot.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/common/cmd_boot.c b/common/cmd_boot.c index 2fc0729f3..c2897a235 100644 --- a/common/cmd_boot.c +++ b/common/cmd_boot.c @@ -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) |