From: Zoltan B. <zb...@fr...> - 2004-05-31 07:46:56
|
Hi, this is in vt.c: static int __init vt_console_init(void) { int err =3D 0; =20 #if defined (CONFIG_VGA_CONSOLE) err =3D vga_console_init(); #elif defined (CONFIG_DUMMY_CONSOLE) err =3D dumbcon_init(); #endif return err; } =20 This should call dumbcon_init() only if CONFIG_VGA_CONSOLE is not defined and CONFIG_DUMMY_CONSOLE is. I have both, so dumbcon_init() isn't called. Now what activates it on i386 so I can fix it on x86_64? It's not a console_initcall() so the Best regards, Zolt=E1n B=F6sz=F6rm=E9nyi |