[PATCH] big size LOGO problem

Shinji Yamasaki (yamasaki@sainet.or.jp)
Thu, 15 Apr 1999 14:02:20 +0900


This is a multi-part message in MIME format.
--------------E64D0C799982473AC1773A5D
Content-Type: text/plain; charset=iso-2022-jp
Content-Transfer-Encoding: 7bit

Hi,

I wanted to display big LOGO (800x400 pixels, vga=0x314) in boot-time.
I made LOGO-KIT.

However, the LOG messages has been overwritten on LOGO.
I made patch.

Thanks.

--
big LOGO<http://www.sainet.or.jp/~yamasaki/picture/logo800x440.gif>
--------------E64D0C799982473AC1773A5D
Content-Type: text/plain; charset=iso-2022-jp;
name="fbcon.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="fbcon.diff"

--- drivers/video/fbcon.c.orig Wed Apr 14 16:34:11 1999
+++ drivers/video/fbcon.c Wed Apr 14 16:35:08 1999
@@ -548,6 +548,8 @@
conp->vc_pos += logo_lines * conp->vc_size_row;
}
}
+ if((conp->vc_y < logo_lines) && (logo_lines < nr_rows))
+ conp->vc_y = logo_lines;
scr_memsetw((unsigned short *)conp->vc_origin, conp->vc_video_erase_char,
conp->vc_size_row * logo_lines);
}

--------------E64D0C799982473AC1773A5D--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/