From: <mi...@pr...> - 2004-01-30 18:09:37
|
Update of /cvsroot/gc-linux/linux/init In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13104/init Modified Files: main.c Log Message: framebuffer code now functional. thanks to tmbinc and PhREAksTe. still greenish though. tmbinc's console driver is now a compile time option. better don't compile both the console driver and the framebuffer driver in, or else both will continuously scroll the screen... Index: main.c =================================================================== RCS file: /cvsroot/gc-linux/linux/init/main.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- main.c 23 Jan 2004 03:26:19 -0000 1.1.1.1 +++ main.c 29 Jan 2004 01:02:50 -0000 1.2 @@ -391,7 +391,9 @@ * Interrupts are still disabled. Do necessary setups, then * enable them */ +#ifdef CONFIG_GAMECUBE_CONSOLE con_puts(""); +#endif lock_kernel(); printk(linux_banner); setup_arch(&command_line); |