Subversion Repositories HelenOS-historic

Rev

Rev 1289 | Rev 1473 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1289 Rev 1303
Line 132... Line 132...
132
 
132
 
133
void arch_post_mm_init(void)
133
void arch_post_mm_init(void)
134
{
134
{
135
    if (config.cpu_active == 1) {
135
    if (config.cpu_active == 1) {
136
#ifdef CONFIG_FB
136
#ifdef CONFIG_FB
137
    if (vesa_present()) vesa_init();
137
        if (vesa_present())
-
 
138
            vesa_init();
138
    else
139
        else
139
#endif
140
#endif
140
        ega_init(); /* video */
141
            ega_init(); /* video */
141
        /* Enable debugger */
142
        /* Enable debugger */
142
        debugger_init();
143
        debugger_init();
-
 
144
        /* Merge all memory zones to 1 big zone */
-
 
145
        zone_merge_all();
143
    }
146
    }
144
    /* Setup fast SYSCALL/SYSRET */
147
    /* Setup fast SYSCALL/SYSRET */
145
    syscall_setup_cpu();
148
    syscall_setup_cpu();
146
   
149
   
147
}
150
}