The patch titled fbcon: fix scrollback with logo issue immediately after boot has been added to the -mm tree. Its filename is fbcon-fix-scrollback-with-logo-issue-immediately-after-boot.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fbcon: fix scrollback with logo issue immediately after boot From: David Hollister <david.hollister@xxxxxxx> After the system boots with the logo, if the first action is a scrollback, the screen may become garbled. This patch ensures that the softback_curr value is updated along with softback_in following the scrollback. Signed-off-by: David Hollister <david.hollister@xxxxxxx> Signed-off-by: Jordan Crouse <jordan.crouse@xxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/console/fbcon.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/console/fbcon.c~fbcon-fix-scrollback-with-logo-issue-immediately-after-boot drivers/video/console/fbcon.c --- devel/drivers/video/console/fbcon.c~fbcon-fix-scrollback-with-logo-issue-immediately-after-boot 2006-05-26 09:56:08.000000000 -0700 +++ devel-akpm/drivers/video/console/fbcon.c 2006-05-26 09:56:08.000000000 -0700 @@ -2631,7 +2631,7 @@ static int fbcon_scrolldelta(struct vc_d scr_memcpyw((u16 *) q, (u16 *) p, vc->vc_size_row); } - softback_in = p; + softback_in = softback_curr = p; update_region(vc, vc->vc_origin, logo_lines * vc->vc_cols); } _ Patches currently in -mm which might be from david.hollister@xxxxxxx are fbcon-fix-scrollback-with-logo-issue-immediately-after-boot.patch vt-delay-the-update-of-the-visible-console.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html