Mercurial > flash_v2
diff packages/redboot/current/src/flash.c @ 1740:699be933fd5e
Fix flash boundary calculation
| author | bartv |
|---|---|
| date | Sat, 20 Nov 2004 18:24:15 +0000 |
| parents | dcf02dfe567d |
| children | 172edf8a96d8 |
line wrap: on
line diff
--- a/packages/redboot/current/src/flash.c +++ b/packages/redboot/current/src/flash.c @@ -1397,7 +1397,7 @@ do_flash_init(void) return false; } flash_start = info.start; - flash_end = info.end -1; + flash_end = info.end; // No bootblock support yet, so we merge any bootblocks we might // find into full size blocks
