* 2.5.71, fbconsole: No boot logo?
@ 2003-06-16 17:41 Harald Dunkel
2003-06-16 18:39 ` ismail (cartman) donmez
0 siblings, 1 reply; 10+ messages in thread
From: Harald Dunkel @ 2003-06-16 17:41 UTC (permalink / raw)
To: linux-kernel
Hi folks,
I haven't played with 2.5.x kernels for quite some time, so
maybe I missed something, but shouldn't there be a penguin
logo at boot time? AFAICT I have enabled vesa framebuffer,
fbconsole, and a 224 colors boot logo. The first few lines
are not scrolled at boot time, but Tux is gone.
On kernel 2.4.21 Tux is back.
Regards
Harri
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: 2.5.71, fbconsole: No boot logo?
2003-06-16 17:41 Harald Dunkel
@ 2003-06-16 18:39 ` ismail (cartman) donmez
2003-06-16 18:53 ` Flameeyes
0 siblings, 1 reply; 10+ messages in thread
From: ismail (cartman) donmez @ 2003-06-16 18:39 UTC (permalink / raw)
To: Harald Dunkel, linux-kernel
Hi,
> I haven't played with 2.5.x kernels for quite some time, so
> maybe I missed something, but shouldn't there be a penguin
> logo at boot time? AFAICT I have enabled vesa framebuffer,
> fbconsole, and a 224 colors boot logo. The first few lines
> are not scrolled at boot time, but Tux is gone.
>
Try Graphics support --->Logo configuration --->[*] Bootup logo
Regards,
/ismail
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: 2.5.71, fbconsole: No boot logo?
2003-06-16 18:39 ` ismail (cartman) donmez
@ 2003-06-16 18:53 ` Flameeyes
0 siblings, 0 replies; 10+ messages in thread
From: Flameeyes @ 2003-06-16 18:53 UTC (permalink / raw)
To: linux-kernel
On Mon, 2003-06-16 at 20:39, ismail (cartman) donmez wrote:
> Try Graphics support --->Logo configuration --->[*] Bootup logo
You can't activate the 224 colors logo without Bootup Logo active.
I have the same problem with these lines in .config
CONFIG_LOGO=y
CONFIG_LOGO_LINUX_MONO=y
CONFIG_LOGO_LINUX_VGA16=y
CONFIG_LOGO_LINUX_CLUT224=y
--
Flameeyes
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: 2.5.71, fbconsole: No boot logo?
@ 2003-06-16 19:35 Petr Vandrovec
2003-06-16 20:36 ` James Simmons
2003-06-17 16:58 ` Nicholas Wourms
0 siblings, 2 replies; 10+ messages in thread
From: Petr Vandrovec @ 2003-06-16 19:35 UTC (permalink / raw)
To: Flameeyes; +Cc: linux-kernel
On 16 Jun 03 at 20:53, Flameeyes wrote:
> On Mon, 2003-06-16 at 20:39, ismail (cartman) donmez wrote:
> > Try Graphics support --->Logo configuration --->[*] Bootup logo
> You can't activate the 224 colors logo without Bootup Logo active.
> I have the same problem with these lines in .config
>
> CONFIG_LOGO=y
> CONFIG_LOGO_LINUX_MONO=y
> CONFIG_LOGO_LINUX_VGA16=y
> CONFIG_LOGO_LINUX_CLUT224=y
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?
Petr Vandrovec
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: 2.5.71, fbconsole: No boot logo?
2003-06-16 19:35 2.5.71, fbconsole: No boot logo? Petr Vandrovec
@ 2003-06-16 20:36 ` James Simmons
2003-06-17 18:06 ` Harald Dunkel
2003-07-05 15:14 ` Harald Dunkel
2003-06-17 16:58 ` Nicholas Wourms
1 sibling, 2 replies; 10+ messages in thread
From: James Simmons @ 2003-06-16 20:36 UTC (permalink / raw)
To: Petr Vandrovec; +Cc: Flameeyes, linux-kernel
> 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.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: 2.5.71, fbconsole: No boot logo?
2003-06-16 19:35 2.5.71, fbconsole: No boot logo? Petr Vandrovec
2003-06-16 20:36 ` James Simmons
@ 2003-06-17 16:58 ` Nicholas Wourms
2003-06-17 17:27 ` James Simmons
1 sibling, 1 reply; 10+ messages in thread
From: Nicholas Wourms @ 2003-06-17 16:58 UTC (permalink / raw)
To: linux-fbdev-devel
Petr Vandrovec wrote:
> On 16 Jun 03 at 20:53, Flameeyes wrote:
>
>>On Mon, 2003-06-16 at 20:39, ismail (cartman) donmez wrote:
>>
>>>Try Graphics support --->Logo configuration --->[*] Bootup logo
>>
>>You can't activate the 224 colors logo without Bootup Logo active.
>>I have the same problem with these lines in .config
>>
>>CONFIG_LOGO=y
>>CONFIG_LOGO_LINUX_MONO=y
>>CONFIG_LOGO_LINUX_VGA16=y
>>CONFIG_LOGO_LINUX_CLUT224=y
>
>
> 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?
I see the same problem on my smp box with a G450. Speaking of which,
this stripped down driver really bites. This is no offense to Petr,
since I *know* it isn't his fault that he was restricted by the new
fbdev API. James, can't you compromise with Petr on a few of your
changes so that the missing original, fully featured matroxfb driver
bits can be merged. It is kind of insane to have 2.6 actually be worse
than 2.4 in regards to a very popular and traditionally well-supported
driver. If not, I do hope that Petr will continue to supply a side
patch for this (as time permits him to do so)...
Cheers,
Nicholas
-------------------------------------------------------
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Re: 2.5.71, fbconsole: No boot logo?
2003-06-17 16:58 ` Nicholas Wourms
@ 2003-06-17 17:27 ` James Simmons
0 siblings, 0 replies; 10+ messages in thread
From: James Simmons @ 2003-06-17 17:27 UTC (permalink / raw)
To: Nicholas Wourms; +Cc: linux-fbdev-devel
> I see the same problem on my smp box with a G450.
The issues is a bug in cfb_imageblit. I have a patch for it.
> Speaking of which,
> this stripped down driver really bites. This is no offense to Petr,
> since I *know* it isn't his fault that he was restricted by the new
> fbdev API.
The api is not restrictive in any way. The code is in there just not
finished in some ways. A good example is EDID support.
> James, can't you compromise with Petr on a few of your
> changes so that the missing original, fully featured matroxfb driver
> bits can be merged.
I'm working on some new stuff right now. More cleanup for the cursor api.
The changes to the cursor api will also allow fast fonts which the matrox
hardware can support and texture mapped fonts.
-------------------------------------------------------
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: 2.5.71, fbconsole: No boot logo?
2003-06-16 20:36 ` James Simmons
@ 2003-06-17 18:06 ` Harald Dunkel
2003-07-05 15:14 ` Harald Dunkel
1 sibling, 0 replies; 10+ messages in thread
From: Harald Dunkel @ 2003-06-17 18:06 UTC (permalink / raw)
To: James Simmons; +Cc: Petr Vandrovec, Flameeyes, linux-kernel
James Simmons wrote:
>
> 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.
>
Tux is back.
Many thanx
Harri
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: 2.5.71, fbconsole: No boot logo?
2003-06-16 20:36 ` James Simmons
2003-06-17 18:06 ` Harald Dunkel
@ 2003-07-05 15:14 ` Harald Dunkel
2003-07-05 15:53 ` Alex Goddard
1 sibling, 1 reply; 10+ messages in thread
From: Harald Dunkel @ 2003-07-05 15:14 UTC (permalink / raw)
To: linux-kernel; +Cc: James Simmons, Petr Vandrovec, Flameeyes
Hi folks,
James Simmons wrote:
>>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.
>
Would it be possible to include this change in the official
source tree?
Regards
Harri
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: 2.5.71, fbconsole: No boot logo?
2003-07-05 15:14 ` Harald Dunkel
@ 2003-07-05 15:53 ` Alex Goddard
0 siblings, 0 replies; 10+ messages in thread
From: Alex Goddard @ 2003-07-05 15:53 UTC (permalink / raw)
To: Harald Dunkel; +Cc: linux-kernel, James Simmons, Petr Vandrovec, Flameeyes
On Sat, 5 Jul 2003, Harald Dunkel wrote:
[Boot Logo Stuff]
> Would it be possible to include this change in the official
> source tree?
This paticular change (and several) others are in a set of fb updates that
James posted a day or three ago. It's kind of out of his hands now. I'm
sure they'll get in eventually.
You can search your friendly, neighborhood lkml archive for the post with
the newest fb patch's URL.
--
Alex Goddard
agoddard@purdue.edu
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2003-07-05 15:34 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-06-16 19:35 2.5.71, fbconsole: No boot logo? Petr Vandrovec
2003-06-16 20:36 ` James Simmons
2003-06-17 18:06 ` Harald Dunkel
2003-07-05 15:14 ` Harald Dunkel
2003-07-05 15:53 ` Alex Goddard
2003-06-17 16:58 ` Nicholas Wourms
2003-06-17 17:27 ` James Simmons
-- strict thread matches above, loose matches on Subject: below --
2003-06-16 17:41 Harald Dunkel
2003-06-16 18:39 ` ismail (cartman) donmez
2003-06-16 18:53 ` Flameeyes
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.