Update of /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video/console
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24656/ruby-2.6/drivers/video/console
Modified Files:
vgacon.c
Log Message:
vga clean up kernel self-unpacker boottime messages
Index: vgacon.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/video/console/vgacon.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- vgacon.c 23 Apr 2004 07:36:56 -0000 1.4
+++ vgacon.c 11 Jun 2004 11:09:24 -0000 1.5
@@ -985,17 +985,6 @@
static void vgacon_save_screen(struct vc_data *c)
{
- static int vga_bootup_console = 0;
-
- if (!vga_bootup_console) {
- /* This is a gross hack, but here is the only place we can
- * set bootup console parameters without messing up generic
- * console initialization routines.
- */
- vga_bootup_console = 1;
- c->vc_x = ORIG_X;
- c->vc_y = ORIG_Y;
- }
if (!vga_is_gfx)
scr_memcpyw((u16 *) c->vc_screenbuf, (u16 *) c->vc_origin,
c->vc_screenbuf_size);
|