diff options
author | wdenk <wdenk> | 2003-10-14 19:43:55 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-10-14 19:43:55 +0000 |
commit | 2d5b561e2bfdee8552a99b2cf93016cce2a74895 (patch) | |
tree | 33a47c8393624e338d0cc8914c773ab9613cb385 /common/cmd_flash.c | |
parent | f72da3406bf6f1c1bce9aa03b07d070413a916af (diff) | |
download | u-boot-imx-2d5b561e2bfdee8552a99b2cf93016cce2a74895.zip u-boot-imx-2d5b561e2bfdee8552a99b2cf93016cce2a74895.tar.gz u-boot-imx-2d5b561e2bfdee8552a99b2cf93016cce2a74895.tar.bz2 |
* Make sure HUSH is initialized for running auto-update scripts
* Make 5200 reset command _really_ reset the board, without running
any other code after it
* Fix flash mapping and display on P3G4 board
* Patch by Kyle Harris, 15 Jul 2003:
- add support for Intel IXP425 CPU
- add support for IXDP425 eval board
Diffstat (limited to 'common/cmd_flash.c')
-rw-r--r-- | common/cmd_flash.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/cmd_flash.c b/common/cmd_flash.c index 99d9130..430a33e 100644 --- a/common/cmd_flash.c +++ b/common/cmd_flash.c @@ -164,6 +164,11 @@ flash_fill_sect_ranges (ulong addr_first, ulong addr_last, sect = s_last[bank]; addr_first = (sect == s_end) ? b_end + 1: info->start[sect + 1]; (*s_count) += s_last[bank] - s_first[bank] + 1; + } else if (s_last[bank] >= 0) { + printf("Error: cannot span across banks when they are" + " mapped in reverse order\n"); + rcode = 1; + break; } } |