Re: Xorg problems on Fujitsu LifeBook S6120
Torfinn Ingolfsen <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.mobile |
|---|---|
| Message-ID | <[email protected]> |
Update: I recevied the attached patch by mail (thnaks, you know who you are). I didn't think that commenting out a single line in file of xf86-video-intel would work, but it does. simply commenting out line 1966 in i830_display.c makes Xorg with the xf86-video-intel driver work. Probably not the corecct fix, but as long as it works I'm happy. -- Regards, Torfinn Ingolfsen _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mobile To unsubscribe, send any mail to "[email protected]"
i830_display-patch.patch
(text/x-diff, 249 B)
--- src/i830_display.c.orig 2009-05-13 02:12:11.000000000 +0200
+++ src/i830_display.c 2010-05-14 23:08:03.000000000 +0200
@@ -1963,7 +1963,9 @@
intel_crtc->lut_b[i] = blue[i] >> 8;
}
+#if 0
i830_crtc_load_lut(crtc);
+#endif
}
/**