Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4493 → Rev 4494

/trunk/uspace/srv/console/console.c
792,7 → 792,11
}
}
/* Disable kernel output to the console */
__SYSCALL0(SYS_DEBUG_DISABLE_CONSOLE);
/* Initialize the screen */
gcons_redraw_console();
set_rgb_color(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND);
screen_clear();
curs_goto(0, 0);
811,13 → 815,8
{
printf(NAME ": HelenOS Console service\n");
/* Disable kernel output to the console */
__SYSCALL0(SYS_DEBUG_DISABLE_CONSOLE);
if (!console_init()) {
__SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE);
if (!console_init())
return -1;
}
printf(NAME ": Accepting connections\n");
async_manager();
/trunk/uspace/srv/console/gcons.c
536,7 → 536,7
console_state[0] = CONS_DISCONNECTED_SEL;
console_state[KERNEL_CONSOLE] = CONS_KERNEL;
gcons_redraw_console();
vp_switch(console_vp);
}
 
/** @}