Re: Boot problem with HPPA 735/125 w/ A1439A CRX

Helge Deller <[email protected]> Sun, 29 Jul 2007 17:34:05 +0200
Newsgroups gmane.linux.ports.hppa
Message-ID <[email protected]>
Hi Kurt,

On Sunday 29 July 2007, [email protected] wrote:
> I commented out the fb_memset call 
> in stifb.c and your suspicions were correct!? 
> Not only did the kernel boot but I got the full
> GUI login screen.?? 

Great.

> When I upgraded from Woody to Sarge, I also had no GUI so perhaps
> this problem was in Sarge too.

Probably.

> Do you have any tests you would like me
> to perform on this machine - it's just a hobby
> machine for me. 

Yes, could you please try this patch ?
(please modify by hand, I just copy&pasted it here)

diff --git a/drivers/video/stifb.c b/drivers/video/stifb.c
@@ -512,7 +512,7 @@ rattlerSetupPlanes(struct stifb_info *fb)

-       fb_memset((void*)fb->info.fix.smem_start, 0xff,
+       memset(fb->info.screen_base, 0xff,
                fb->info.var.yres*fb->info.fix.line_length);

Is there any difference if you just comment out the fb_memset() call, or if you modify it like I showed in the patch above?
I'm wondering, if we should just delete the whole fb_memset() call.

Helge