Changeset 381465e in mainline for arch/amd64/src


Ignore:
Timestamp:
2006-05-09T18:10:07Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f6a0f06
Parents:
31282f9
Message:

zone_merge_all must be called after frame_init is completed - otherwise
new zone information can be allocated over the not-yet-blacklisted areas.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/amd64.c

    r31282f9 r381465e  
    135135        if (config.cpu_active == 1) {
    136136#ifdef CONFIG_FB
    137         if (vesa_present()) vesa_init();
    138         else
     137                if (vesa_present())
     138                        vesa_init();
     139                else
    139140#endif
    140                 ega_init();     /* video */
     141                        ega_init();     /* video */
    141142                /* Enable debugger */
    142143                debugger_init();
     144                /* Merge all memory zones to 1 big zone */
     145                zone_merge_all();
    143146        }
    144147        /* Setup fast SYSCALL/SYSRET */
Note: See TracChangeset for help on using the changeset viewer.