Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261490AbUJZVsd (ORCPT ); Tue, 26 Oct 2004 17:48:33 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261491AbUJZVsd (ORCPT ); Tue, 26 Oct 2004 17:48:33 -0400 Received: from smtp-out.hotpop.com ([38.113.3.51]:31679 "EHLO smtp-out.hotpop.com") by vger.kernel.org with ESMTP id S261490AbUJZVsZ (ORCPT ); Tue, 26 Oct 2004 17:48:25 -0400 From: "Antonino A. Daplas" Reply-To: adaplas@pol.net To: linux-fbdev-devel@lists.sourceforge.net, Ludovic Drolez , linux-kernel@vger.kernel.org Subject: Re: [Linux-fbdev-devel] Re: 2.6.9 bug: linux logo not displayed in vga16fb (bug found) Date: Wed, 27 Oct 2004 05:55:45 +0800 User-Agent: KMail/1.5.4 References: <4178CB95.7000505@linbox.com> <417E733C.2040204@linbox.com> In-Reply-To: <417E733C.2040204@linbox.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200410270555.48087.adaplas@hotpop.com> X-HotPOP: ----------------------------------------------- Sent By HotPOP.com FREE Email Get your FREE POP email at www.HotPOP.com ----------------------------------------------- Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1338 Lines: 39 On Tuesday 26 October 2004 23:54, Ludovic Drolez wrote: > Ludovic Drolez wrote: > > Hi ! > > > > I used to have a nice vga boot logo with my 2.6.7 kernel, but with the > > 2.6.9, my > > boot logo has disappeared (same .config)... > > It seems to switch to VGA, and some space is reserved for the logo, but > > it is not displayed. > > The logo appears with vesafb. > > I made a few diffs between my old working 2.6.7 kernel and the 2.6.9 and > found something interesting in fbmem.c: > Should be fixed in the mm tree or the latest bk snapshot. Or you can try this very patch. Tony diff -uprN linux-2.6.9-rc1-mm4-orig/drivers/video/vga16fb.c linux-2.6.9-rc1-mm4/drivers/video/vga16fb.c --- linux-2.6.9-rc1-mm4-orig/drivers/video/vga16fb.c 2004-09-07 21:18:35.000000000 +0800 +++ linux-2.6.9-rc1-mm4/drivers/video/vga16fb.c 2004-09-07 21:30:39.059300648 +0800 @@ -1306,7 +1306,7 @@ void vga16fb_imageblit(struct fb_info *i { if (image->depth == 1) vga_imageblit_expand(info, image); - else if (image->depth <= info->var.bits_per_pixel) + else vga_imageblit_color(info, image); } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/