From: "Jiri Slaby" vgacon printk scrolling fix As Jindrich Makovicka suggested, there is a stray printk("vgacon delta: %i\n", lines); which effectively disables the scrollback of the vga console (at least when not using the new soft scrollback). Removing it fixes the problem. Signed-off-by: Jiri Slaby Acked-by: Antonino Daplas Cc: Jindrich Makovicka Cc: Martin Mares Signed-off-by: Andrew Morton --- drivers/video/console/vgacon.c | 1 - 1 files changed, 1 deletion(-) diff -puN drivers/video/console/vgacon.c~vgacon-add-support-for-soft-scrollback-fix drivers/video/console/vgacon.c --- 25/drivers/video/console/vgacon.c~vgacon-add-support-for-soft-scrollback-fix Thu Feb 2 15:37:22 2006 +++ 25-akpm/drivers/video/console/vgacon.c Thu Feb 2 15:37:22 2006 @@ -331,7 +331,6 @@ static int vgacon_scrolldelta(struct vc_ int margin = c->vc_size_row * 4; int ul, we, p, st; - printk("vgacon delta: %i\n", lines); if (vga_rolled_over > (c->vc_scr_end - vga_vram_base) + margin) { ul = c->vc_scr_end - vga_vram_base; _