From: Albert H. <alb...@ya...> - 2005-01-04 23:29:54
|
> > #ifdef CONFIG_FRAMEBUFFER_CONSOLE > > acquire_console_sem(); > > - update_screen(info->currcon); > > +/* update_screen(info->currcon);*/ > > unblank_screen(); > > release_console_sem(); > > #endif > > struct fb_info.currcon was moved into fbcon-specific > code, effectively > making it invisible to drivers. I don't know how > killing this off > entirely semantically affects things, so I stuck > with simply commenting > it out. Just a heads-up. You may change it to: #ifdef CONFIG_FRAMEBUFFER_CONSOLE acquire_console_sem(); update_screen(fg_console); unblank_screen(); release_console_sem(); #endif Cheers, Albert ______________________________________________ Renovamos el Correo Yahoo!: ¡250 MB GRATIS! Nuevos servicios, más seguridad http://correo.yahoo.es |