From: James S. <jsi...@us...> - 2001-10-08 02:25:19
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/video In directory usw-pr-cvs1:/tmp/cvs-serv5592 Modified Files: fbmem.c Log Message: Made the penguin logo come back. It works even for stand alone fbdev systems. Hey this way you know if it worked. Index: fbmem.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/video/fbmem.c,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- fbmem.c 2001/10/06 16:11:13 1.50 +++ fbmem.c 2001/10/08 02:25:16 1.51 @@ -775,7 +775,7 @@ } #endif -static void __init fbcon_show_logo(struct fb_info *info) +static void fbcon_show_logo(struct fb_info *info) { u16 palette_red[16], palette_green[16], palette_blue[16]; int depth = info->var.bits_per_pixel; @@ -885,7 +885,7 @@ printk("%s: MTRR turned on\n", fb_info->fix.id); } #endif - + fbcon_show_logo(fb_info); return 0; } |