|
From: Antonino D. <ad...@po...> - 2002-12-14 21:35:46
|
On Sun, 2002-12-15 at 00:53, Andr=C3=A9 Stierenberg wrote: > Now the characters are printed correctly. And in the linux logo, the > pinguin, something is also wrong. It seems the some pixels are mirrored t= oo > whereas other pixels are correct. >=20 > What could this be and in what way can i fix the problem? >=20 The logo is drawn directly to the framebuffer by fbcon_show_logo() in linux/drivers/video/fbcon.c. In your case, (is this cfb4?), the code segment is enclosed by this conditional: #if defined(CONFIG_FBCON_CFB4) ... #endif You can apply the same reversal techniques to correct your problem. Tony |