Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S264257AbTFPUW1 (ORCPT ); Mon, 16 Jun 2003 16:22:27 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S264262AbTFPUW1 (ORCPT ); Mon, 16 Jun 2003 16:22:27 -0400 Received: from phoenix.infradead.org ([195.224.96.167]:55561 "EHLO phoenix.infradead.org") by vger.kernel.org with ESMTP id S264257AbTFPUW0 (ORCPT ); Mon, 16 Jun 2003 16:22:26 -0400 Date: Mon, 16 Jun 2003 21:36:17 +0100 (BST) From: James Simmons To: Petr Vandrovec cc: Flameeyes , Subject: Re: 2.5.71, fbconsole: No boot logo? In-Reply-To: <49AA33D2A8D@vcnet.vc.cvut.cz> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 889 Lines: 26 > It is probably some uninitialized value or something like that. > > At work I have no logo, while at home I have logo (both 2.5.71 from > yesterday), both with matroxfb... Only significant difference I know > is that at home I have UP kernel, while at work I have SMP. But it should > not matter, yes? Its a bug in cfbimgblt.c. In cfb_imageblit you have a test } else if (image->depth == bpp) Its should be } else if (image->depth <= bpp) instead. At present the logo will only show up when the framebuffer depth matches the image's depth. cfb_imageblit supports displaying images of equal or lesser depths than the framebuffer. - 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/