Mercurial > ecos
diff packages/redboot/current/src/main.c @ 307:906a5d289c6d
Better memory use vis FIS & ZLIB - from Thomas Koeller
| author | gthomas |
|---|---|
| date | Sat, 24 Aug 2002 11:34:49 +0000 |
| parents | 57f3c72256bb |
| children | 85c0eb753287 |
line wrap: on
line diff
--- a/packages/redboot/current/src/main.c +++ b/packages/redboot/current/src/main.c @@ -42,7 +42,7 @@ //#####DESCRIPTIONBEGIN#### // // Author(s): gthomas -// Contributors: gthomas +// Contributors: gthomas, tkoeller // Date: 2000-07-14 // Purpose: // Description: @@ -223,6 +223,11 @@ cyg_start(void) bist(); +#ifdef CYGOPT_REDBOOT_FIS_ZLIB_COMMON_BUFFER + fis_zlib_common_buffer = + workspace_end -= CYGNUM_REDBOOT_FIS_ZLIB_COMMON_BUFFER_SIZE; +#endif + for (init_entry = __RedBoot_INIT_TAB__; init_entry != &__RedBoot_INIT_TAB_END__; init_entry++) { (*init_entry->fun)(); }
