From owner-freebsd-mobile@FreeBSD.ORG Sat Nov 27 19:10:54 2010 Return-Path: Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D23D1065670 for ; Sat, 27 Nov 2010 19:10:54 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from thalia-smout.broadpark.no (thalia-smout.broadpark.no [80.202.8.21]) by mx1.freebsd.org (Postfix) with ESMTP id D8C3A8FC12 for ; Sat, 27 Nov 2010 19:10:53 +0000 (UTC) MIME-version: 1.0 Content-type: multipart/mixed; boundary="Boundary_(ID_WBxIGQjJWnsLwQjyJvh8Pw)" Received: from ignis-smin.broadpark.no ([80.202.8.11]) by thalia-smout.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with ESMTP id <0LCK0022A5A3EP30@thalia-smout.broadpark.no> for freebsd-mobile@freebsd.org; Sat, 27 Nov 2010 20:10:51 +0100 (CET) Received: from kg-v2.kg4.no ([80.203.109.85]) by ignis-smin.broadpark.no (Sun Java(tm) System Messaging Server 7u3-15.01 64bit (built Feb 12 2010)) with SMTP id <0LCK00BO55A3H250@ignis-smin.broadpark.no> for freebsd-mobile@freebsd.org; Sat, 27 Nov 2010 20:10:51 +0100 (CET) Date: Sat, 27 Nov 2010 20:10:51 +0100 From: Torfinn Ingolfsen To: freebsd-mobile@freebsd.org Message-id: <20101127201051.f4ae1495.torfinn.ingolfsen@broadpark.no> In-reply-to: <20101121220111.baf224df.torfinn.ingolfsen@broadpark.no> References: <20101121220111.baf224df.torfinn.ingolfsen@broadpark.no> X-Mailer: Sylpheed 3.0.3 (GTK+ 2.22.1; amd64-portbld-freebsd8.1) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: Xorg problems on Fujitsu LifeBook S6120 X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Nov 2010 19:10:54 -0000 This is a multi-part message in MIME format. --Boundary_(ID_WBxIGQjJWnsLwQjyJvh8Pw) Content-type: text/plain; CHARSET=US-ASCII Content-transfer-encoding: 7BIT 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 --Boundary_(ID_WBxIGQjJWnsLwQjyJvh8Pw) Content-type: text/x-diff; name=i830_display-patch.patch Content-transfer-encoding: 7BIT Content-disposition: attachment; filename=i830_display-patch.patch --- 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 } /** --Boundary_(ID_WBxIGQjJWnsLwQjyJvh8Pw)--