From owner-freebsd-x11@FreeBSD.ORG Mon Jan 11 04:51:46 2010 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8F24106566B for ; Mon, 11 Jan 2010 04:51:46 +0000 (UTC) (envelope-from mdg583@gmail.com) Received: from mail-pz0-f202.google.com (mail-pz0-f202.google.com [209.85.222.202]) by mx1.freebsd.org (Postfix) with ESMTP id B19308FC08 for ; Mon, 11 Jan 2010 04:51:46 +0000 (UTC) Received: by pzk40 with SMTP id 40so210145pzk.7 for ; Sun, 10 Jan 2010 20:51:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=Mmn2ffA+3MpfkUAzrKmHvi3V0rNtj8/yjd0VP0HIXac=; b=bZuThlxoflZA5KEBXr6Tgmwfv5OI5/4nKV3W0J7WaWeAiUR1bPsm+hh1/eg2Y6mvS4 gvZnrivDSV9G+ExKsTsz5dRmMOhVPt67suHQKQIQONbmTlvf/G/LhVoOvVvpP4cDl/ts OBL1zH1sA76sqsbBBEDGhZ+Dwg8iuXC8+pa58= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=aac3uIcnbbzdjF+UHPWb425I45tnyOKA+ocLOtzpHEm0yofi+2oS0m+EU5xqPt+NxA bMg2CzootLOn18PSGSuhtULTd2jt5io1l4QpHxo+L5oc6zOsw3d+wpLDW5wRBs5PrqoI k4p7Md3pXmiNnqaAmsc4T/pXlFG2dIfJ8vuM8= MIME-Version: 1.0 Received: by 10.115.64.16 with SMTP id r16mr8540233wak.224.1263183956533; Sun, 10 Jan 2010 20:25:56 -0800 (PST) Date: Mon, 11 Jan 2010 06:25:56 +0200 Message-ID: <77cfe8311001102025h3a25d6c7rf5f1d7eec4794d10@mail.gmail.com> From: Matthew Gibson To: x11@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: freebsd synaptics touchpad tap support X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jan 2010 04:51:46 -0000 Hello, my name is Matthew Gibson. I use an Acer Aspire One netbook running FreeBSD 8.0 Release and gnome 2.28. I have updated all of my ports as of the date of the release of freebsd 8. It seems like every since I upgraded my system, my touchpad doesn't register taps on the touchpad as mouse clicks. Do you know why this would be? This obviously also removes double clicks and drags using the touchpad. I can still do those things using the buttons below the touchpad. Here is the output of sysctl hw.psm.synaptics: matt-freebsd# sysctl hw.psm.synaptics hw.psm.synaptics.directional_scrolls: 1 hw.psm.synaptics.min_pressure: 16 hw.psm.synaptics.max_pressure: 220 hw.psm.synaptics.max_width: 10 hw.psm.synaptics.margin_top: 200 hw.psm.synaptics.margin_right: 200 hw.psm.synaptics.margin_bottom: 200 hw.psm.synaptics.margin_left: 200 hw.psm.synaptics.na_top: 1783 hw.psm.synaptics.na_right: 563 hw.psm.synaptics.na_bottom: 1408 hw.psm.synaptics.na_left: 1600 hw.psm.synaptics.window_min: 4 hw.psm.synaptics.window_max: 10 hw.psm.synaptics.multiplicator: 10000 hw.psm.synaptics.weight_current: 3 hw.psm.synaptics.weight_previous: 6 hw.psm.synaptics.weight_previous_na: 20 hw.psm.synaptics.weight_len_squared: 2000 hw.psm.synaptics.div_min: 9 hw.psm.synaptics.div_max: 17 hw.psm.synaptics.div_max_na: 30 hw.psm.synaptics.div_len: 100 hw.psm.synaptics.tap_max_delta: 80 hw.psm.synaptics.tap_min_queue: 2 hw.psm.synaptics.taphold_timeout: 125000 hw.psm.synaptics.vscroll_hor_area: 0 hw.psm.synaptics.vscroll_ver_area: -600 hw.psm.synaptics.vscroll_min_delta: 50 hw.psm.synaptics.vscroll_div_min: 100 hw.psm.synaptics.vscroll_div_max: 150 And here is the relavent lines from xorg.conf: Section "InputDevice" Identifier "SynapticsMouse" Driver "synaptics" Option "SHMConfig" "true" Option "Device" "/dev/psm0" # Option "Protocol" "auto-dev" Option "Protocol" "psm" #"auto-dev" Option "LeftEdge" "1700" Option "RightEdge" "5300" Option "TopEdge" "1700" Option "BottomEdge" "4200" Option "FingerLow" "25" Option "FingerHigh" "30" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "VertScrollDelta" "100" Option "MinSpeed" "0.09" Option "MaxSpeed" "0.18" Option "AccelFactor" "0.0015" Option "SHMConfig" "1" #"on" #more synaptics option can be found at #http://wiki.archlinux.org/index.php/Acer_Aspire_One EndSection Thanks, Matthew From owner-freebsd-x11@FreeBSD.ORG Mon Jan 11 11:07:12 2010 Return-Path: Delivered-To: freebsd-x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D68110656C1 for ; Mon, 11 Jan 2010 11:07:12 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 50F098FC20 for ; Mon, 11 Jan 2010 11:07:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o0BB7CfK034834 for ; Mon, 11 Jan 2010 11:07:12 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o0BB7B42034832 for freebsd-x11@FreeBSD.org; Mon, 11 Jan 2010 11:07:11 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 11 Jan 2010 11:07:11 GMT Message-Id: <201001111107.o0BB7B42034832@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-x11@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-x11@FreeBSD.org X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jan 2010 11:07:12 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/142069 x11 x11/xorg: After adding on a laptop Toshiba Sattelite L o ports/141660 x11 x11/xorg: X can't determine amount of video memory on o ports/141386 x11 x11/xorg won't build from ports o ports/141272 x11 x11-drivers/xf86-video-ati and x11-drivers/xf86-video- o ports/141223 x11 x11-drivers/xf86-video-chips needs to be updated to 1. o ports/141145 x11 devel/makedepend: causes problem with openssl & X o ports/141116 x11 [hang] x11/xorg: ATI radeon xorg freezes [regression] o ports/140809 x11 x11/xorg: Xorg 7.4 radeon drm crashes 8.0 o ports/140775 x11 x11/xorg: fatal trap 12 after closing XORG with CTRL-A o ports/140764 x11 x11-drivers/xf86-video-openchrome segfaults with VIA K o ports/140254 x11 x11-drivers/xf86-video-cirrus: Black Screen with Cirru o ports/139509 x11 x11-servers/xorg-server: runtime problems in latest (2 o ports/139045 x11 x11-drivers/xf86-video-ati: update to 6.12.3 o ports/139011 x11 [patch] Add options to support GLX TLS in x11-servers o ports/137748 x11 x11/xorg: "unprocessed" mouse click results in effecti o ports/137731 x11 [patch] x11-drivers/xf86-input-vmmouse o ports/135276 x11 x11/xorg: GUI running first time only while using Free o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o ports/134244 x11 x11/xorg: "intel" driver for Xorg is very broken o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o ports/134082 x11 x11/xdriinfo: xdriinfo-1.0.2 build fail o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o ports/133609 x11 x11/xorg crashes with vlc, intel video driver o ports/133482 x11 x11/libXext "Generic Event Extension not available" er o ports/133465 x11 x11/xorg: X crashes with mplayer -vo xv with xf86-vide o ports/132621 x11 x11/xorg tries to install event when deselected o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize o ports/132100 x11 x11/xorg: Xorg server forgets pointer map after xlock o ports/132041 x11 x11/xorg: Broken Intel video driver o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh o ports/131696 x11 x11-servers/xorg-server: hald core dumps make X11 unus o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke 38 problems total. From owner-freebsd-x11@FreeBSD.ORG Mon Jan 11 19:54:00 2010 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B20C6106566B for ; Mon, 11 Jan 2010 19:54:00 +0000 (UTC) (envelope-from lehmann@ans-netz.de) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [78.111.72.186]) by mx1.freebsd.org (Postfix) with SMTP id C9B8F8FC0C for ; Mon, 11 Jan 2010 19:53:59 +0000 (UTC) Received: (qmail 26236 invoked by uid 89); 11 Jan 2010 19:27:17 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (78.111.72.187) by avocado.salatschuessel.net with SMTP; 11 Jan 2010 19:27:17 -0000 Date: Mon, 11 Jan 2010 20:27:16 +0100 From: Oliver Lehmann To: Norikatsu Shigemura Message-Id: <20100111202716.6e700585.lehmann@ans-netz.de> In-Reply-To: <20091205104243.f66171bb.nork@FreeBSD.org> References: <20091205104243.f66171bb.nork@FreeBSD.org> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.18.5; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org, x11@FreeBSD.org, Robert Noland Subject: Re: [HEADS UP] Experimental 3D HW accel support for Radeon HD 2xxx, 3xxx and 4xxx. X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jan 2010 19:54:00 -0000 Norikatsu Shigemura wrote: > Hi Radeon HD 2xxx, 3xxx and 4xxx users! Tried this now too with your mesa3d.tar.bz2 (10/01/09) but why is it so slow? > glxgears IRQ's not enabled, falling back to busy waits: 2 0 10241 frames in 5.0 seconds = 2048.125 FPS 10220 frames in 5.0 seconds = 2043.875 FPS Using a HD4890 on an core i7-920. I would expect the FPS going up to around 20,000? With Software Rasterizer I'm at around 500 FPS.. -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-x11@FreeBSD.ORG Mon Jan 11 21:08:42 2010 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 559E9106566B for ; Mon, 11 Jan 2010 21:08:42 +0000 (UTC) (envelope-from adamk@voicenet.com) Received: from QMTA11.westchester.pa.mail.comcast.net (qmta11.westchester.pa.mail.comcast.net [76.96.59.211]) by mx1.freebsd.org (Postfix) with ESMTP id E10528FC08 for ; Mon, 11 Jan 2010 21:08:41 +0000 (UTC) Received: from omta13.westchester.pa.mail.comcast.net ([76.96.62.52]) by QMTA11.westchester.pa.mail.comcast.net with comcast id UE5e1d00517dt5G5BM8i23; Mon, 11 Jan 2010 21:08:42 +0000 Received: from [192.168.5.101] ([68.45.22.62]) by omta13.westchester.pa.mail.comcast.net with comcast id UM8h1d00K1LNQfY3ZM8ipn; Mon, 11 Jan 2010 21:08:42 +0000 Message-ID: <4B4B9352.80408@voicenet.com> Date: Mon, 11 Jan 2010 16:08:34 -0500 From: Adam K Kirchhoff User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.5) Gecko/20091204 Thunderbird/3.0 MIME-Version: 1.0 To: freebsd-x11@freebsd.org References: <20091205104243.f66171bb.nork@FreeBSD.org> <20100111202716.6e700585.lehmann@ans-netz.de> In-Reply-To: <20100111202716.6e700585.lehmann@ans-netz.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [HEADS UP] Experimental 3D HW accel support for Radeon HD 2xxx, 3xxx and 4xxx. X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jan 2010 21:08:42 -0000 On 1/11/2010 2:27 PM, Oliver Lehmann wrote: > Norikatsu Shigemura wrote: > > >> Hi Radeon HD 2xxx, 3xxx and 4xxx users! >> > Tried this now too with your mesa3d.tar.bz2 (10/01/09) but why is it so > slow? > > >> glxgears >> > IRQ's not enabled, falling back to busy waits: 2 0 > 10241 frames in 5.0 seconds = 2048.125 FPS > 10220 frames in 5.0 seconds = 2043.875 FPS > > Using a HD4890 on an core i7-920. I would expect the FPS going up to > around 20,000? With Software Rasterizer I'm at around 500 FPS.. > > glxgears is not a benchmark. This can not be stressed enough. Adam From owner-freebsd-x11@FreeBSD.ORG Tue Jan 12 02:39:43 2010 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A80241065670; Tue, 12 Jan 2010 02:39:43 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id 675C48FC14; Tue, 12 Jan 2010 02:39:43 +0000 (UTC) Received: from [192.168.1.4] (adsl-1-207-120.bna.bellsouth.net [65.1.207.120]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id o0C2deq4026784 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 11 Jan 2010 21:39:40 -0500 (EST) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: Oliver Lehmann In-Reply-To: <20100111202716.6e700585.lehmann@ans-netz.de> References: <20091205104243.f66171bb.nork@FreeBSD.org> <20100111202716.6e700585.lehmann@ans-netz.de> Content-Type: text/plain Organization: FreeBSD Date: Mon, 11 Jan 2010 20:39:34 -0600 Message-Id: <1263263974.2486.88.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.2 required=5.0 tests=AWL, BAYES_00, FH_DATE_PAST_20XX, RCVD_IN_PBL,RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,SPF_SOFTFAIL autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: ports@FreeBSD.org, x11@FreeBSD.org, Norikatsu Shigemura Subject: Re: [HEADS UP] Experimental 3D HW accel support for Radeon HD 2xxx, 3xxx and 4xxx. X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jan 2010 02:39:43 -0000 On Mon, 2010-01-11 at 20:27 +0100, Oliver Lehmann wrote: > Norikatsu Shigemura wrote: > > > Hi Radeon HD 2xxx, 3xxx and 4xxx users! > > Tried this now too with your mesa3d.tar.bz2 (10/01/09) but why is it so > slow? > > > glxgears > IRQ's not enabled, falling back to busy waits: 2 0 > 10241 frames in 5.0 seconds = 2048.125 FPS > 10220 frames in 5.0 seconds = 2043.875 FPS glxgears is not a very useful benchmark... I primarily only tells how fast you can swap buffers. At any rate, that does seem a tiny bit low, I normally turn around 2200 - 2300 on my 4650 w/c2d. I think if you try with some GL games, you will find it quite adequate. robert. > Using a HD4890 on an core i7-920. I would expect the FPS going up to > around 20,000? With Software Rasterizer I'm at around 500 FPS.. > -- Robert Noland FreeBSD From owner-freebsd-x11@FreeBSD.ORG Tue Jan 12 03:38:39 2010 Return-Path: Delivered-To: x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4F6E106566B; Tue, 12 Jan 2010 03:38:39 +0000 (UTC) (envelope-from sfourman@gmail.com) Received: from mail-pz0-f202.google.com (mail-pz0-f202.google.com [209.85.222.202]) by mx1.freebsd.org (Postfix) with ESMTP id B127D8FC17; Tue, 12 Jan 2010 03:38:39 +0000 (UTC) Received: by pzk40 with SMTP id 40so950769pzk.7 for ; Mon, 11 Jan 2010 19:38:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=RW70PDSrHO4Zr5jR5CnQ+c4UCundCxXJDYxH9drIj0E=; b=gtJGbzmaCTJqD/KTkVruwDWeMw0Fj/hsF5gTiNfvIo/qjcJQRlB9NfxzFOGU9Q1GgG WTc2etlZXg4nN7m8bS34hR9AnT2G6eCLVGmeWBXVs+yg/DAkxPcaWQ6rUBRAZw8cvDrP DIltiTrzwBgJI/xv6JrYEWXUv1+9QmrmWM9fA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=DaWlJ4O+tIrfhzBrR+FGzcM0iw+ARv+NxvriNck1OEk1Rv4f2HhrVlSAz5y+70xm2/ dPhJzNbcmdcSO62vCSiryqRp2HDDHOwgspIuq1pzHvg3ii3twlKxB+08aEM9H3VMIW7N E3uEe/YjQwrJy2fAcGzacMF+Qp2Mhi+GbZZwA= MIME-Version: 1.0 Received: by 10.142.1.34 with SMTP id 34mr1524477wfa.26.1263265764986; Mon, 11 Jan 2010 19:09:24 -0800 (PST) In-Reply-To: <1263263974.2486.88.camel@balrog.2hip.net> References: <20091205104243.f66171bb.nork@FreeBSD.org> <20100111202716.6e700585.lehmann@ans-netz.de> <1263263974.2486.88.camel@balrog.2hip.net> Date: Mon, 11 Jan 2010 21:09:24 -0600 Message-ID: <11167f521001111909s6153464bicd38581cb9245370@mail.gmail.com> From: "Sam Fourman Jr." To: Robert Noland Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ports@freebsd.org, x11@freebsd.org, Oliver Lehmann , Norikatsu Shigemura Subject: Re: [HEADS UP] Experimental 3D HW accel support for Radeon HD 2xxx, 3xxx and 4xxx. X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jan 2010 03:38:40 -0000 On Mon, Jan 11, 2010 at 8:39 PM, Robert Noland wrote: > On Mon, 2010-01-11 at 20:27 +0100, Oliver Lehmann wrote: >> Norikatsu Shigemura wrote: >> >> > Hi Radeon HD 2xxx, 3xxx and 4xxx users! >> >> Tried this now too with your mesa3d.tar.bz2 (10/01/09) but why is it so >> slow? >> >> > glxgears >> IRQ's not enabled, falling back to busy waits: 2 0 >> 10241 frames in 5.0 seconds =3D 2048.125 FPS >> 10220 frames in 5.0 seconds =3D 2043.875 FPS > > glxgears is not a very useful benchmark... I primarily only tells how > fast you can swap buffers. =A0At any rate, that does seem a tiny bit low, > I normally turn around 2200 - 2300 on my 4650 w/c2d. =A0I think if you tr= y > with some GL games, you will find it quite adequate. What Should we be using for benchmarks? I have a Few machines I can test. Sam Fourman Jr. From owner-freebsd-x11@FreeBSD.ORG Tue Jan 12 12:47:26 2010 Return-Path: Delivered-To: x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A1FF1065676; Tue, 12 Jan 2010 12:47:26 +0000 (UTC) (envelope-from rnoland@FreeBSD.org) Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195]) by mx1.freebsd.org (Postfix) with ESMTP id E046F8FC1D; Tue, 12 Jan 2010 12:47:25 +0000 (UTC) Received: from [192.168.1.4] (adsl-1-207-120.bna.bellsouth.net [65.1.207.120]) (authenticated bits=0) by gizmo.2hip.net (8.14.3/8.14.3) with ESMTP id o0CClNti030238 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Tue, 12 Jan 2010 07:47:23 -0500 (EST) (envelope-from rnoland@FreeBSD.org) From: Robert Noland To: "Sam Fourman Jr." In-Reply-To: <11167f521001111909s6153464bicd38581cb9245370@mail.gmail.com> References: <20091205104243.f66171bb.nork@FreeBSD.org> <20100111202716.6e700585.lehmann@ans-netz.de> <1263263974.2486.88.camel@balrog.2hip.net> <11167f521001111909s6153464bicd38581cb9245370@mail.gmail.com> Content-Type: text/plain Organization: FreeBSD Date: Tue, 12 Jan 2010 06:47:17 -0600 Message-Id: <1263300437.2486.90.camel@balrog.2hip.net> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.2 required=5.0 tests=AWL, BAYES_00, FH_DATE_PAST_20XX, RCVD_IN_PBL,RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,SPF_SOFTFAIL autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gizmo.2hip.net Cc: ports@freebsd.org, x11@freebsd.org, Norikatsu Shigemura Subject: Re: [HEADS UP] Experimental 3D HW accel support for Radeon HD 2xxx, 3xxx and 4xxx. X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jan 2010 12:47:26 -0000 On Mon, 2010-01-11 at 21:09 -0600, Sam Fourman Jr. wrote: > On Mon, Jan 11, 2010 at 8:39 PM, Robert Noland wrote: > > On Mon, 2010-01-11 at 20:27 +0100, Oliver Lehmann wrote: > >> Norikatsu Shigemura wrote: > >> > >> > Hi Radeon HD 2xxx, 3xxx and 4xxx users! > >> > >> Tried this now too with your mesa3d.tar.bz2 (10/01/09) but why is it so > >> slow? > >> > >> > glxgears > >> IRQ's not enabled, falling back to busy waits: 2 0 > >> 10241 frames in 5.0 seconds = 2048.125 FPS > >> 10220 frames in 5.0 seconds = 2043.875 FPS > > > > glxgears is not a very useful benchmark... I primarily only tells how > > fast you can swap buffers. At any rate, that does seem a tiny bit low, > > I normally turn around 2200 - 2300 on my 4650 w/c2d. I think if you try > > with some GL games, you will find it quite adequate. > > What Should we be using for benchmarks? I have a Few machines I can test. I find openarena or nexuiz to be fairly good. Our openarena port needs updating. robert. > Sam Fourman Jr. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- Robert Noland FreeBSD From owner-freebsd-x11@FreeBSD.ORG Wed Jan 13 14:12:04 2010 Return-Path: Delivered-To: x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9B1C1065672 for ; Wed, 13 Jan 2010 14:12:04 +0000 (UTC) (envelope-from exil@sasurai.se) Received: from mailgw22.surf-town.net (mail12.surf-town.net [212.97.132.52]) by mx1.freebsd.org (Postfix) with ESMTP id A35D98FC13 for ; Wed, 13 Jan 2010 14:12:04 +0000 (UTC) Received: by mailgw22.surf-town.net (Postfix, from userid 65534) id EC363F1B2E; Wed, 13 Jan 2010 14:54:55 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mailgw22.surf-town.net (Postfix) with ESMTP id 4459FF1B4F for ; Wed, 13 Jan 2010 14:54:55 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mailgw22.surf-town.net X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=7 tests=[none] Received: from mailgw22.surf-town.net ([127.0.0.1]) by localhost (mailgw22.surf-town.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Rqllhrhsqwgi for ; Wed, 13 Jan 2010 14:54:48 +0100 (CET) Received: from l33t-r0v (l33t-r0v.kjm.sgsnet.se [193.11.196.104]) by mailgw22.surf-town.net (Postfix) with ESMTP id EB392F1B2E for ; Wed, 13 Jan 2010 14:54:42 +0100 (CET) Date: Wed, 13 Jan 2010 14:54:27 +0100 From: Kenneth Lind To: x11@freebsd.org Message-Id: <20100113145427.f207f4ec.exil@sasurai.se> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.18.5; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Wed__13_Jan_2010_14_54_28_+0100_A48sxM6u4KDOZi=F" Cc: Subject: xorg-server configure fails X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jan 2010 14:12:05 -0000 --Signature=_Wed__13_Jan_2010_14_54_28_+0100_A48sxM6u4KDOZi=F Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello! I recently discovered that ports/x11/libXtrans and ports/x11/xtrans both install a file /usr/local/libdata/pkgconfig/xtrans.pc .. Considering the versions and the problems arising from installing it _after_ xtrans, should even libXtrans be in the ports-tree? It's just a thought on my behalf.=20 Regards, Kenneth Lind --=20 Homepage: http://www.sasurai.se/ Cellphone .se: +46-(0)73 218 1937 --Signature=_Wed__13_Jan_2010_14_54_28_+0100_A48sxM6u4KDOZi=F Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (FreeBSD) iEYEARECAAYFAktN0JQACgkQh2Se1CB7M2GZqgCfZWGTZ1evmYKmwhU+J0hiPmgg NtAAnjyr25QWxXO7Aw70AGnIXRjNDFDQ =thfN -----END PGP SIGNATURE----- --Signature=_Wed__13_Jan_2010_14_54_28_+0100_A48sxM6u4KDOZi=F-- From owner-freebsd-x11@FreeBSD.ORG Thu Jan 14 02:16:01 2010 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F062106566B for ; Thu, 14 Jan 2010 02:16:01 +0000 (UTC) (envelope-from no-reply@weebly.com) Received: from app-64-5.weebly.com (app-64-5.weebly.com [199.34.228.115]) by mx1.freebsd.org (Postfix) with ESMTP id 595998FC16 for ; Thu, 14 Jan 2010 02:16:00 +0000 (UTC) Received: from app-64-5.weebly.com (app-64-5 [127.0.0.1]) by app-64-5.weebly.com (8.14.1/8.14.1) with ESMTP id o0E1M2KA022503 for ; Wed, 13 Jan 2010 17:22:02 -0800 Received: (from wwwrun@localhost) by app-64-5.weebly.com (8.14.1/8.14.1/Submit) id o0E1M2qB022501; Wed, 13 Jan 2010 17:22:02 -0800 Date: Wed, 13 Jan 2010 17:22:02 -0800 Message-Id: <201001140122.o0E1M2qB022501@app-64-5.weebly.com> X-Authentication-Warning: app-64-5.weebly.com: wwwrun set sender to no-reply@weebly.com using -f To: freebsd-x11@freebsd.org From: "HENNING HANSEN Esq. Next of kinWill Beneficiary to Mr. McCoy Meyers." Subject: HENNING HANSEN Esq. Next of kinWill Beneficiary to Mr. McCoy Meyers. has invited you to Weebly X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: henninghansen6001@googlemail.com List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jan 2010 02:16:01 -0000 >From The Desk 0f: Henning Hansen & Associates 4 Davy Avenue Know hill Milton Keynes MK 5 8NL E-mail: hhenning91@hotmail.com Reference # GLS./LEGALH//PRO/PRCDRE 2312. Subject: Next of kin/Will Beneficiary to Mr. McCoy Meyers. Good Day Friend, This is a personal email directed to you and I request that it be treated as such. I am Henning Hansen Esq. a Denmark national, I have live and worked in London United Kingdom for 17 years with my family which I am the personal attorney/sole executor to the late Mr. McCoy Meyers of Dublin Ireland. Herein after referred to as " my client" I represent the interest of my client killed with his immediate family in a small plane crash near Eveleth, Minnesota on October 25, 2002 and I will like to negotiate the terms of investment of resources available to him. My client was a contractor to Shell Petroleum Development Company, United Kingdom (SPDC), and had left behind a deposit of Three Million British Pounds Sterling only (£3,000,000.00 GBP) with a Bank here in United Kingdom where I am presently residing. The funds originated from contract transactions he executed in his registered area of business. Just after his death, I was contacted by his Bank to provide his next of kin; reasons being that his deposit agreement contains a residuary clause giving his personal attorney express authority to nominate the beneficiary to his funds. Unknown to the Bank here in London United Kingdom that my client had left no possible trace of any of his close relative with me, making all efforts in my part to locate his family relative proved to be unfruitful since his death. Note down from my clients own story, he was only adopted and his foster parents whom he lost in 1976, according to him, had no possible trace of his real family. By virtue of my closeness to the deceased and his immediate family, I am very much aware of my client's financial standing. I do sincerely sympathize the death of my client, but had thought it unprofitable for his funds to be submitted to the government of this co! untry and the finance institution where the fund is lodged. On this note, I decided to search for a credible person and was moved to contact you to put up a claim to the bank in that capacity as a next of kin/will beneficiary to my client, so that the proceeds of his bank account valued at Three Million British Pounds Sterling only (£3,000,000.00 GBP) can be paid to you before getting confiscated or declared unserviceable to the Bank where this huge deposit is lodged. Note that this is legal and 100% risk free. I guarantee that this will be executed under a legitimate arrangement that will protect you from any breach of law. As I said, I require only a solemn confidentiality on this. Please get in touch via my alternative email: hhenning91@hotmail.com for better confidentiality and if okay by you, send me your full name and address, telephone and fax numbers to enable us discuss further on this transaction and also to enable me go to the British High Court here in London and secure all legal documentation on your behalf to enable you get the legal backing to the claim If this proposal is acceptable by you. I am looking forward to your understanding and co-operation. Kind Regards. Henning Hansen Esq. Check Weebly out at http://www.weebly.com/?i ---------------------- Weebly values your privacy. This was a one time mailing from HENNING HANSEN Esq. (Next of kin/Will Beneficiary to Mr. McCoy Meyers.). If you never want to receive mail from Weebly, visit http://www.weebly.com/weebly/unsubscribe.php From owner-freebsd-x11@FreeBSD.ORG Thu Jan 14 02:16:02 2010 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC884106568D for ; Thu, 14 Jan 2010 02:16:02 +0000 (UTC) (envelope-from no-reply@weebly.com) Received: from app-64-5.weebly.com (app-64-5.weebly.com [199.34.228.115]) by mx1.freebsd.org (Postfix) with ESMTP id 973718FC1A for ; Thu, 14 Jan 2010 02:16:02 +0000 (UTC) Received: from app-64-5.weebly.com (app-64-5 [127.0.0.1]) by app-64-5.weebly.com (8.14.1/8.14.1) with ESMTP id o0E1JaxN020782 for ; Wed, 13 Jan 2010 17:19:36 -0800 Received: (from wwwrun@localhost) by app-64-5.weebly.com (8.14.1/8.14.1/Submit) id o0E1JaaL020780; Wed, 13 Jan 2010 17:19:36 -0800 Date: Wed, 13 Jan 2010 17:19:36 -0800 Message-Id: <201001140119.o0E1JaaL020780@app-64-5.weebly.com> X-Authentication-Warning: app-64-5.weebly.com: wwwrun set sender to no-reply@weebly.com using -f To: freebsd-x11@freebsd.org From: "HENNING HANSEN Esq. Next of kinWill Beneficiary to Mr. McCoy Meyers." Subject: HENNING HANSEN Esq. Next of kinWill Beneficiary to Mr. McCoy Meyers. has invited you to Weebly X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: henninghansen6001@googlemail.com List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jan 2010 02:16:02 -0000 >From The Desk 0f: Henning Hansen & Associates 4 Davy Avenue Know hill Milton Keynes MK 5 8NL E-mail: hhenning91@hotmail.com Reference # GLS./LEGALH//PRO/PRCDRE 2312. Subject: Next of kin/Will Beneficiary to Mr. McCoy Meyers. Good Day Friend, This is a personal email directed to you and I request that it be treated as such. I am Henning Hansen Esq. a Denmark national, I have live and worked in London United Kingdom for 17 years with my family which I am the personal attorney/sole executor to the late Mr. McCoy Meyers of Dublin Ireland. Herein after referred to as " my client" I represent the interest of my client killed with his immediate family in a small plane crash near Eveleth, Minnesota on October 25, 2002 and I will like to negotiate the terms of investment of resources available to him. My client was a contractor to Shell Petroleum Development Company, United Kingdom (SPDC), and had left behind a deposit of Three Million British Pounds Sterling only (£3,000,000.00 GBP) with a Bank here in United Kingdom where I am presently residing. The funds originated from contract transactions he executed in his registered area of business. Just after his death, I was contacted by his Bank to provide his next of kin; reasons being that his deposit agreement contains a residuary clause giving his personal attorney express authority to nominate the beneficiary to his funds. Unknown to the Bank here in London United Kingdom that my client had left no possible trace of any of his close relative with me, making all efforts in my part to locate his family relative proved to be unfruitful since his death. Note down from my clients own story, he was only adopted and his foster parents whom he lost in 1976, according to him, had no possible trace of his real family. By virtue of my closeness to the deceased and his immediate family, I am very much aware of my client's financial standing. I do sincerely sympathize the death of my client, but had thought it unprofitable for his funds to be submitted to the government of this co! untry and the finance institution where the fund is lodged. On this note, I decided to search for a credible person and was moved to contact you to put up a claim to the bank in that capacity as a next of kin/will beneficiary to my client, so that the proceeds of his bank account valued at Three Million British Pounds Sterling only (£3,000,000.00 GBP) can be paid to you before getting confiscated or declared unserviceable to the Bank where this huge deposit is lodged. Note that this is legal and 100% risk free. I guarantee that this will be executed under a legitimate arrangement that will protect you from any breach of law. As I said, I require only a solemn confidentiality on this. Please get in touch via my alternative email: hhenning91@hotmail.com for better confidentiality and if okay by you, send me your full name and address, telephone and fax numbers to enable us discuss further on this transaction and also to enable me go to the British High Court here in London and secure all legal documentation on your behalf to enable you get the legal backing to the claim If this proposal is acceptable by you. I am looking forward to your understanding and co-operation. Kind Regards. Henning Hansen Esq. Check Weebly out at http://www.weebly.com/?i ---------------------- Weebly values your privacy. This was a one time mailing from HENNING HANSEN Esq. (Next of kin/Will Beneficiary to Mr. McCoy Meyers.). If you never want to receive mail from Weebly, visit http://www.weebly.com/weebly/unsubscribe.php From owner-freebsd-x11@FreeBSD.ORG Fri Jan 15 14:55:14 2010 Return-Path: Delivered-To: x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5517C106566B for ; Fri, 15 Jan 2010 14:55:14 +0000 (UTC) (envelope-from ondrej.pesta@idc.cz) Received: from webmail.idc.cz (211.col.prg.mynet.cz [212.20.102.211]) by mx1.freebsd.org (Postfix) with ESMTP id 45D798FC18 for ; Fri, 15 Jan 2010 14:55:12 +0000 (UTC) Received: from localhost (unknown [127.0.0.1]) by webmail.idc.cz (Postfix) with ESMTP id 91DECBBC3 for ; Fri, 15 Jan 2010 15:37:25 +0100 (CET) X-Virus-Scanned: amavisd-new at example.com Received: from webmail.idc.cz ([127.0.0.1]) by localhost (webmail.idc.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4hNQ5W5WuQc2 for ; Fri, 15 Jan 2010 15:37:21 +0100 (CET) Received: from oppsbook.in.idc.cz (r2g242.net.upc.cz [62.245.70.242]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by webmail.idc.cz (Postfix) with ESMTPSA id B5B55BBD3 for ; Fri, 15 Jan 2010 15:37:20 +0100 (CET) Message-ID: <4B507D9F.5060203@idc.cz> Date: Fri, 15 Jan 2010 15:37:19 +0100 From: Ondrej Pesta User-Agent: Thunderbird 2.0.0.23 (X11/20091201) To: x11@freebsd.org References: <20091205104243.f66171bb.nork@FreeBSD.org> <20100111202716.6e700585.lehmann@ans-netz.de> <1263263974.2486.88.camel@balrog.2hip.net> <11167f521001111909s6153464bicd38581cb9245370@mail.gmail.com> <1263300437.2486.90.camel@balrog.2hip.net> In-Reply-To: <1263300437.2486.90.camel@balrog.2hip.net> Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: [HEADS UP] Experimental 3D HW accel support for Radeon HD 2xxx, 3xxx and 4xxx. X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 14:55:14 -0000 Hello everyone. I tried to run 3D acceleration on my Acer TravelMate 6592 with Mobility Radeon HD 2400 XT (chip M74). I upgraded software according to the list below. When I upgraded and turn on EXA instead of SHADOWFB, glxgears are faster from 300fps to 770fps (I expected much more), but X are completely slower. Windows are opening slow, desktop switching is slow, and so on... Any help please? This is my configuration: FreeBSD 8.0-STABLE amd64 dri2proto-2.2 glproto-1.4.11 mesa_7.6.1 drm GIT version (master) xf86-video-radeonhd GIT version (master) Important parts of my xorg.conf: Load "glx" Load "GLcore" Load "dri" Load "dri2" Option "DRI" "On" Option "AccelMethod" "EXA" Section "DRI" Mode 0666 EndSection Section "ServerFlags" Option "AIGLX" "true" EndSection And also my Xorg.log: X.Org X Server 1.6.1 Release Date: 2009-4-14 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 8.0-BETA2 amd64 Current Operating System: FreeBSD oppsbook.in.idc.cz 8.0-STABLE FreeBSD 8.0-STABLE #0: Tue Jan 12 13:37:54 CET 2010 [1]root@oppsbook.in.idc.cz:/usr/obj/usr/src/sys/MYKERN amd64 Build Date: 16 August 2009 10:34:24PM Before reporting problems, check [2]http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jan 15 08:10:46 2010 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "Multiple Layout" (**) |-->Screen "builtinLCD" (0) (**) | |-->Monitor "displej" (**) | |-->Device "radeon0" (**) |-->Input Device "Mouse1" (**) Option "AIGLX" "true" (==) Automatically adding devices (==) Automatically enabling devices (WW) `fonts.dir' not found (or not valid) in "/usr/local/lib/X11/fonts/local/". Entry deleted from font path. (Run 'mkfontdir' on "/usr/local/lib/X11/fonts/local/"). (WW) `fonts.dir' not found (or not valid) in "/usr/local/lib/X11/fonts/encodings/". Entry deleted from font path. (Run 'mkfontdir' on "/usr/local/lib/X11/fonts/encodings/"). (WW) `fonts.dir' not found (or not valid) in "/usr/local/lib/X11/fonts/util/". Entry deleted from font path. (Run 'mkfontdir' on "/usr/local/lib/X11/fonts/util/"). (WW) The directory "/usr/local/share/apps/konsole/fonts/" does not exist. Entry deleted from font path. (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/bitstream-vera/, /usr/local/lib/X11/fonts/cyrillic/, /usr/local/lib/X11/fonts/terminus-font/, /usr/local/lib/X11/fonts/webfonts/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, built-ins (==) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled. (WW) Disabling Mouse1 (II) Loader magic: 0xb20 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@1:0:0) ATI Technologies Inc Radeon HD 2400 XT rev 0, Mem @ 0xf0000000/67108864, 0xfc000000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) "dri2" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.6.1, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "type1" (WW) Warning, couldn't open module type1 (II) UnloadModule: "type1" (EE) Failed to load module "type1" (module does not exist, 0) (II) LoadModule: "freetype" (WW) Warning, couldn't open module freetype (II) UnloadModule: "freetype" (EE) Failed to load module "freetype" (module does not exist, 0) (II) LoadModule: "xtt" (WW) Warning, couldn't open module xtt (II) UnloadModule: "xtt" (EE) Failed to load module "xtt" (module does not exist, 0) (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.6.1, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (**) AIGLX enabled (II) Loading extension GLX (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.6.1, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "dri2" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri2.so (II) Module dri2: vendor="X.Org Foundation" compiled for 1.6.1, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DRI2 (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.6.1, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.6.1, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "radeonhd" (II) Loading /usr/local/lib/xorg/modules/drivers//radeonhd_drv.so (II) Module radeonhd: vendor="AMD GPG" compiled for 1.6.1, module version = 1.3.0 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) RADEONHD: X driver for the following AMD GPG (ATI) graphics devices: RV505 : Radeon X1550, X1550 64bit. RV515 : Radeon X1300, X1550, X1600; FireGL V3300, V3350. RV516 : Radeon X1300, X1550, X1550 64-bit, X1600; FireMV 2250. R520 : Radeon X1800; FireGL V5300, V7200, V7300, V7350. RV530 : Radeon X1300 XT, X1600, X1600 Pro, X1650; FireGL V3400, V5200. RV535 : Radeon X1300, X1650. RV550 : Radeon X2300 HD. RV560 : Radeon X1650. RV570 : Radeon X1950, X1950 GT; FireGL V7400. R580 : Radeon X1900, X1950; AMD Stream Processor. R600 : Radeon HD 2900 GT/Pro/XT; FireGL V7600/V8600/V8650. RV610 : Radeon HD 2350, HD 2400 Pro/XT, HD 2400 Pro AGP; FireGL V4000. RV620 : Radeon HD 3450, HD 3470. RV630 : Radeon HD 2600 LE/Pro/XT, HD 2600 Pro/XT AGP; Gemini RV630; FireGL V3600/V5600. RV635 : Radeon HD 3650, HD 3670. RV670 : Radeon HD 3690, 3850, HD 3870, FireGL V7700, FireStream 9170. R680 : Radeon HD 3870 X2. M52 : Mobility Radeon X1300. M54 : Mobility Radeon X1400; M54-GL. M56 : Mobility Radeon X1600; Mobility FireGL V5200. M58 : Mobility Radeon X1800, X1800 XT; Mobility FireGL V7100, V7200. M62 : Mobility Radeon X1350. M64 : Mobility Radeon X1450, X2300. M66 : Mobility Radeon X1700, X1700 XT; FireGL V5250. M68 : Mobility Radeon X1900. M71 : Mobility Radeon HD 2300. M72 : Mobility Radeon HD 2400; Radeon E2400. M74 : Mobility Radeon HD 2400 XT. M76 : Mobility Radeon HD 2600; (Gemini ATI) Mobility Radeon HD 2600 XT. M82 : Mobility Radeon HD 3400. M86 : Mobility Radeon HD 3650, HD 3670, Mobility FireGL V5700. M88 : Mobility Radeon HD 3850, HD 3850 X2, HD 3870, HD3870 X2. RS600 : Radeon Xpress 1200, Xpress 1250. RS690 : Radeon X1200, X1250, X1270. RS740 : RS740, RS740M. RS780 : Radeon HD 3100/3200/3300 Series. R700 : Radeon R700. RV710 : Radeon HD4570, HD4350. RV730 : Radeon HD4670, HD4650. RV740 : Radeon HD4770. EXPERIMENTAL AND UNTESTED. RV770 : Radeon HD 4800 Series; Everest, K2, Denali ATI FirePro. RV790 : Radeon HD 4890. M92 : Mobility Radeon HD4330, HD4530, HD4570. EXPERIMENTAL. M93 : Mobility Radeon M93. EXPERIMENTAL AND UNTESTED. M96 : Mobility Radeon HD4600. M97 : Mobility Radeon HD4860. EXPERIMENTAL AND UNTESTED. M98 : Mobility Radeon HD4850, HD4870. (II) RADEONHD: version 1.3.0, built from git branch master, commit 62b013f6 (II) Primary Device is: PCI 01@00:00:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [4] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [5] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [6] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [7] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [8] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [9] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Setting vga for screen 0. (**) RADEONHD(0): Depth 24, (--) framebuffer bpp 32 (**) RADEONHD(0): Option "AccelMethod" "EXA" (**) RADEONHD(0): Option "DRI" "On" (**) RADEONHD(0): Selected EXA 2D acceleration. (II) RADEONHD(0): Card not in database: 0x94C8:0x1025:0x011A; using generic modesetting. If - and only if - your card does not work or does not work optimally please contact [3]radeonhd@opensuse.org to help rectify this. Use the subject: 0x94C8:0x1025:0x011A: and *please* describe the problems you are seeing in your message. (--) RADEONHD(0): Detected an M74 on an unidentified card (II) RADEONHD(0): Mapped IO @ 0xfc000000 to 0x8006ac000 (size 0x00010000) (II) RADEONHD(0): PCIE Card Detected (II) RADEONHD(0): Getting BIOS copy from legacy VBIOS location (II) RADEONHD(0): ATOM BIOS Rom: SubsystemVendorID: 0x1025 SubsystemID: 0x011a IOBaseAddress: 0x2000 Filename: BR29774.001 BIOS Bootup Message: Pantanal M74M GDDR2 128/256M 350e/400m (II) RADEONHD(0): Analog TV Default Mode: 1 (II) RADEONHD(0): Found default TV Mode NTSC (II) RADEONHD(0): The detected amount of videoram exceeds the PCI BAR aperture. (II) RADEONHD(0): Mapping only 65536kB of the total 262144kB, remaining memory is reserved for GPU. (--) RADEONHD(0): VideoRAM: 65536 kByte (II) RADEONHD(0): Framebuffer space used by Firmware (kb): 16 (II) RADEONHD(0): Start of VRAM area used by Firmware: 0xfffc000 (II) RADEONHD(0): AtomBIOS requests 16kB of VRAM scratch space (II) RADEONHD(0): AtomBIOS VRAM scratch base: 0xfffc000 (WW) RADEONHD(0): rhdAtomAllocateFbScratch: FW FB scratch area 268419072 (size: 16384) extends beyond available framebuffer size 67108864 (II) RADEONHD(0): Cannot get VRAM scratch space. Allocating in main memory instead (II) RADEONHD(0): Default Engine Clock: 300000 (II) RADEONHD(0): Default Memory Clock: 400000 (II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Output: 1200000 (II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Output: 0 (II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Input: 13500 (II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Input: 1000 (II) RADEONHD(0): Maximum Pixel Clock: 400000 (II) RADEONHD(0): Reference Clock: 27000 (II) RADEONHD(0): Found libdri 5.4.0. drmOpenDevice: node name is /dev/dri/card0 Failed to change owner or group for file /dev/dri! 2: No such file or directory Failed to change owner or group for file /dev/dri/card0! 2: No such file or directory drmOpenDevice: open result is -1, (No such file or directory) Failed to change owner or group for file /dev/dri/card0! 2: No such file or directory drmOpenDevice: open result is -1, (No such file or directory) drmOpenDevice: Open failed drmOpenByBusid: Searching for BusID pci:0000:01:00.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: drmOpenMinor returns 10 drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0 (II) RADEONHD(0): Found libdrm 1.3.0. (II) RADEONHD(0): Found radeon drm 1.31.0. (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) RADEONHD(0): Reference Clock: 27000 (II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f90 (II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0 (II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f90 (II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8 (II) RADEONHD(0): I2C bus "RHD I2C line 0" initialized. (II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f94 (II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0 (II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f94 (II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8 (II) RADEONHD(0): I2C bus "RHD I2C line 1" initialized. (II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f98 (II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0 (II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f98 (II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8 (II) RADEONHD(0): I2C bus "RHD I2C line 2" initialized. (II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f80 (II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0 (II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f80 (II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8 (II) RADEONHD(0): I2C bus "RHD I2C line 3" initialized. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) RADEONHD(0): Detected VGA mode. (II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Output: 0 (II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Output: 1200000 (II) RADEONHD(0): Maximum Pixel Clock: 400000 (II) RADEONHD(0): Reference Clock: 27000 (II) RADEONHD(0): FB: Allocated Cursor Image at offset 0x00000000 (size = 0x00004000) (II) RADEONHD(0): FB: Allocated Cursor Image at offset 0x00004000 (size = 0x00004000) (II) RADEONHD(0): FirmwareInfo Revision 0104 (II) RADEONHD(0): Unused attribute: ul3DAccelerationEngineClock 0 (II) RADEONHD(0): Unused attribute: ulDriverTargetEngineClock 0 (II) RADEONHD(0): Unused attribute: ulDriverTargetMemoryClock 0 (II) RADEONHD(0): Unused attribute: ucASICMaxTemperature 0 (II) RADEONHD(0): Scary bits: Estimated MinEngineClock 250000 kHz (II) RADEONHD(0): Scary bits: Estimated MinMemoryClock 250000 kHz (II) RADEONHD(0): Default Engine Clock: 300000 (II) RADEONHD(0): Default Memory Clock: 400000 (II) RADEONHD(0): Current Engine Clock: 297000 (II) RADEONHD(0): Current Memory Clock: 396000 (II) RADEONHD(0): Current Chip Voltage: 0 (II) RADEONHD(0): Power Management: used engine clock / memory clock / core (VDDC) voltage (0: ignore) (II) RADEONHD(0): Power Management: Raw Ranges (II) RADEONHD(0): Minimum 250000 kHz / 250000 kHz / 0.900 V (II) RADEONHD(0): Maximum 0 kHz / 0 kHz / 1.100 V (II) RADEONHD(0): Default 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): PowerPlayInfo Revision 0401 (II) RADEONHD(0): Power Management: Validated Ranges (II) RADEONHD(0): Minimum 250000 kHz / 250000 kHz / 0.900 V (II) RADEONHD(0): Maximum 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): Default 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): Power Management: Known Good Configurations (II) RADEONHD(0): 1 300000 kHz / 400000 kHz / 0.900 V (II) RADEONHD(0): 2 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 3 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 4 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 5 300000 kHz / 300000 kHz / 1.100 V (II) RADEONHD(0): 6 300000 kHz / 300000 kHz / 1.100 V (II) RADEONHD(0): 7 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 8 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 9 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 10 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 11 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 12 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 13 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 14 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): 15 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): Power Management: Final Levels (II) RADEONHD(0): Off 250000 kHz / 250000 kHz / 0.900 V (II) RADEONHD(0): Idle 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): Slow2D 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): Fast2D 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): Slow3D 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): Fast3D 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): Max3D 600000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): User 300000 kHz / 400000 kHz / 1.100 V (II) RADEONHD(0): Connector[0] {RHD_CONNECTOR_VGA, "VGA CRT1", RHD_DDC_0, RHD_HPD_NONE, { RHD_OUTPUT_DACA, RHD_OUTPUT_NONE } } (II) RADEONHD(0): Connector[1] {RHD_CONNECTOR_PANEL, "LVDS LCD1", RHD_DDC_4, RHD_HPD_NONE, { RHD_OUTPUT_LVTMA, RHD_OUTPUT_NONE } } (II) RADEONHD(0): Connector[2] {RHD_CONNECTOR_DVI_SINGLE, "HDMI_TYPE_A DFP1", RHD_DDC_1, RHD_HPD_0, { RHD_OUTPUT_TMDSA, RHD_OUTPUT_NONE } } (II) RADEONHD(0): Connector[3] {RHD_CONNECTOR_TV, "7PIN_DIN TV1", RHD_DDC_NONE, RHD_HPD_NONE, { RHD_OU TPUT_DACB, RHD_OUTPUT_NONE } } (--) RADEONHD(0): Attaching Output DAC A to Connector VGA 1 (II) RADEONHD(0): LVDS SEQ Dig onto DE: 30 (II) RADEONHD(0): LVDS SEQ DE to BL: 360 (II) RADEONHD(0): LVDS Off Delay: 500 (II) RADEONHD(0): LVDS Duallink: 0x1 (II) RADEONHD(0): LVDS 24Bit: 0x0 (II) RADEONHD(0): LVDS FPDI: 0x0 (II) RADEONHD(0): LVDS Temporal Dither : 0x1 (II) RADEONHD(0): LVDS Spatial Dither : 0x0 (II) RADEONHD(0): LVDS Grey Level: 0x3 (II) RADEONHD(0): AtomBIOS returned 3 Grey Levels (--) RADEONHD(0): Detected a 18bit dual link panel. (II) RADEONHD(0): ACPI Backlight Control found. (--) RADEONHD(0): Attaching Output LVDS to Connector PANEL (--) RADEONHD(0): Attaching Output TMDS A to Connector DVI-D 1 (--) RADEONHD(0): Attaching Output DAC B to Connector TV 7PIN_DIN (II) RADEONHD(0): RandR: Adding RRoutput VGA_1 for Output DAC A (II) RADEONHD(0): RandR: Adding RRoutput PANEL for Output LVDS (II) RADEONHD(0): RandR: Adding RRoutput DVI-D_1 for Output TMDS A (II) RADEONHD(0): RandR: Adding RRoutput TV_7PIN_DIN for Output DAC B (II) RADEONHD(0): Output VGA_1 using monitor section displej (II) RADEONHD(0): Output VGA_1 has no monitor section (II) RADEONHD(0): Output PANEL has no monitor section (II) RADEONHD(0): Output DVI-D_1 has no monitor section (II) RADEONHD(0): Output TV_7PIN_DIN has no monitor section (II) RADEONHD(0): Query for AtomBIOS Get Panel EDID: failed (II) RADEONHD(0): Found native mode: Modeline "1680x1050" 121.00 1680 1704 1792 1876 1050 1051 1054 1065 (WW) RADEONHD(0): No monitor size info, assuming 96dpi. (II) RADEONHD(0): Output VGA_1 disconnected (II) RADEONHD(0): Output PANEL connected (II) RADEONHD(0): Output DVI-D_1 disconnected (II) RADEONHD(0): Output TV_7PIN_DIN disconnected (II) RADEONHD(0): Using user preference for initial modes (II) RADEONHD(0): Output PANEL using initial mode 1680x1050 (II) RADEONHD(0): RandR 1.2 support enabled (==) RADEONHD(0): RGB weight 888 (==) RADEONHD(0): Default visual is TrueColor (==) RADEONHD(0): Using gamma correction (1.0, 1.0, 1.0) (II) RADEONHD(0): Using 1680x1050 Framebuffer with 1728 pitch (II) RADEONHD(0): FB: Allocated ScanoutBuffer at offset 0x00008000 (size = 0x006EC000) (==) RADEONHD(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.6.1, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules//libexa.so (II) Module exa: vendor="X.Org Foundation" compiled for 1.6.1, module version = 2.4.0 ABI class: X.Org Video Driver, version 5.0 (II) RADEONHD(0): FB: Allocated Offscreen Buffer at offset 0x006F4000 (size = 0x00665000) (II) RADEONHD(0): FB: Allocated DRI Back Buffer at offset 0x00D59000 (size = 0x006EC000) (II) RADEONHD(0): FB: Allocated DRI Depth Buffer at offset 0x01445000 (size = 0x006F6000) (II) RADEONHD(0): FB: Allocated GART table at offset 0x03FF0000 (size = 0x00010000, end of FB) (II) RADEONHD(0): FB: Allocated DRI Textures at offset 0x01B3B000 (size = 0x02400000) (II) RADEONHD(0): Using 16 MB GART aperture (II) RADEONHD(0): Using 2 MB for the ring buffer (II) RADEONHD(0): Using 2 MB for vertex/indirect buffers (II) RADEONHD(0): Using 12 MB for GART textures (--) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [4] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [5] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [6] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [7] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [8] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [9] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) RADEONHD(0): Mapped IO @ 0xfc000000 to 0x8006ac000 (size 0x00010000) (II) RADEONHD(0): Mapped FB @ 0xf0000000 to 0x802c00000 (size 0x04000000) (II) RADEONHD(0): Attempting to enable power management (II) RADEONHD(0): Current Engine Clock: 297000 (II) RADEONHD(0): Current Memory Clock: 396000 (II) RADEONHD(0): Current Chip Voltage: 0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: Searching for BusID pci:0000:01:00.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: drmOpenMinor returns 10 drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) RADEONHD(0): [drm] Using the DRM lock SAREA also for drawables. (II) RADEONHD(0): [drm] framebuffer handle = 0xf0000000 (II) RADEONHD(0): [drm] added 1 reserved context for kernel (II) RADEONHD(0): X context handle = 0x1 (II) RADEONHD(0): [drm] installed DRM signal handler (II) RADEONHD(0): [pci] 16384 kB allocated with handle 0x3ed41000 (II) RADEONHD(0): [pci] ring handle = 0x3ed41000 (II) RADEONHD(0): [pci] Ring mapped at 0x806c00000 (II) RADEONHD(0): [pci] Ring contents 0x00000000 (II) RADEONHD(0): [pci] ring read ptr handle = 0x3ef42000 (II) RADEONHD(0): [pci] Ring read ptr mapped at 0x8006be000 (II) RADEONHD(0): [pci] Ring read ptr contents 0x00000000 (II) RADEONHD(0): [pci] vertex/indirect buffers handle = 0x3ef43000 (II) RADEONHD(0): [pci] Vertex/indirect buffers mapped at 0x806e01000 (II) RADEONHD(0): [pci] Vertex/indirect buffers contents 0x00000000 (II) RADEONHD(0): [pci] GART texture map handle = 0x3f143000 (II) RADEONHD(0): [pci] GART Texture map mapped at 0x807143000 (II) RADEONHD(0): [drm] register handle = 0xfc000000 (II) RADEONHD(0): [dri] Visual configs initialized (II) RADEONHD(0): Attempting to set Engine Clock to 300000 (II) RADEONHD(0): Current Engine Clock: 297000 (II) RADEONHD(0): Current Memory Clock: 396000 (II) RADEONHD(0): Current Chip Voltage: 0 (II) RADEONHD(0): [DRI] installation complete (II) RADEONHD(0): [drm] Added 32 65536 byte vertex/indirect buffers (II) RADEONHD(0): [drm] Mapped 32 vertex/indirect buffers (II) RADEONHD(0): [drm] dma control initialized, using IRQ 259 (II) RADEONHD(0): [drm] Initialized kernel GART heap manager, 12320768 (II) RADEONHD(0): Direct rendering enabled (II) RADEONHD(0): Using DRM Command Processor (indirect) for acceleration. (II) EXA(0): Offscreen pixmap area of 6705152 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (II) UploadToScreen (II) DownloadFromScreen (==) RADEONHD(0): Backing store disabled (==) RADEONHD(0): Silken mouse enabled (II) RADEONHD(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) RADEONHD(0): On Crtc 0 Setting 60.6 Hz Mode: Modeline "1680x1050" 121.00 1680 1704 1792 1876 1050 1051 1054 1065 None (II) RADEONHD(0): RHDAudioSetSupported: config 0x60040 codec 0x1 (II) RADEONHD(0): DPMS enabled (II) RADEONHD(0): Xv: Textured Video initialised. (--) RandR disabled (II) Setting vga for screen 0. (II) Initializing built-in extension Generic Event Extension (II) Initializing built-in extension SHAPE (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension BIG-REQUESTS (II) Initializing built-in extension SYNC (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XC-MISC (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) AIGLX: Screen 0 is not DRI2 capable drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: Searching for BusID pci:0000:01:00.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: drmOpenMinor returns 11 drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0 (II) AIGLX: enabled GLX_MESA_copy_sub_buffer (II) AIGLX: enabled GLX_SGI_make_current_read (II) AIGLX: enabled GLX_texture_from_pixmap with driver support (II) AIGLX: Loaded and initialized /usr/local/lib/dri/r600_dri.so (II) GLX: Initialized DRI GL provider for screen 0 (II) RADEONHD(0): Setting screen physical size to 444 x 277 (II) config/hal: Adding input device AT Keyboard (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.6.1, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 4.0 (**) AT Keyboard: always reports core events (**) Option "Protocol" "standard" (**) AT Keyboard: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) AT Keyboard: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) AT Keyboard: XkbModel: "pc105" (**) Option "XkbLayout" "us" (**) AT Keyboard: XkbLayout: "us" (**) Option "CustomKeycodes" "off" (**) AT Keyboard: CustomKeycodes disabled (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) (II) config/hal: Adding input device PS/2 Mouse (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.6.1, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 4.0 (**) PS/2 Mouse: Device: "/dev/sysmouse" (==) PS/2 Mouse: Protocol: "Auto" (**) PS/2 Mouse: always reports core events (**) Option "Device" "/dev/sysmouse" (==) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5 (**) PS/2 Mouse: Buttons: 9 (**) PS/2 Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) (**) PS/2 Mouse: (accel) keeping acceleration scheme 1 (**) PS/2 Mouse: (accel) filter chain progression: 2.00 (**) PS/2 Mouse: (accel) filter stage 0: 20.00 ms (**) PS/2 Mouse: (accel) set acceleration profile 0 (II) PS/2 Mouse: SetupAuto: hw.iftype is 4, hw.model is 0 (II) PS/2 Mouse: SetupAuto: protocol is SysMouse exaCopyDirty: Pending damage region empty! (II) 3rd Button detected: disabling emulate3Button Thank you for your help Ondrej References 1. mailto:root@oppsbook.in.idc.cz:/usr/obj/usr/src/sys/MYKERN 2. http://wiki.x.org/ 3. mailto:radeonhd@opensuse.org From owner-freebsd-x11@FreeBSD.ORG Sat Jan 16 11:59:30 2010 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 496B61065679; Sat, 16 Jan 2010 11:59:30 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [IPv6:2001:7b8:613:100::211]) by mx1.freebsd.org (Postfix) with ESMTP id A8D858FC0A; Sat, 16 Jan 2010 11:59:29 +0000 (UTC) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 96A301CF9E; Sat, 16 Jan 2010 12:59:28 +0100 (CET) Date: Sat, 16 Jan 2010 12:59:28 +0100 From: Ed Schouten To: Rainer Hurling Message-ID: <20100116115928.GF64905@hoeg.nl> References: <4B5179B5.9020902@gwdg.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/OavacbEee8bSN9S" Content-Disposition: inline In-Reply-To: <4B5179B5.9020902@gwdg.de> User-Agent: Mutt/1.5.20 (2009-06-14) X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org, x11@FreeBSD.org Subject: Re: HEADS UP: gone. All welcome . X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2010 11:59:30 -0000 --/OavacbEee8bSN9S Content-Type: multipart/mixed; boundary="g3yBcqrdPMlHc0Ul" Content-Disposition: inline --g3yBcqrdPMlHc0Ul Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello Rainer, * Rainer Hurling wrote: > After updating my system i tried to rebuild Xorg ports. All went > fine until it has to compile x11/sessreg. >=20 > It seems that the configure script does not find struct > 'utmpx.ut_syslen' and so the build process falls back to utmp? >=20 > Could you please take a look if this is an issue of the new interface. I just looked at this problem and sent a patch to the Xorg folks. I can't find my email in the xorg-devel archives yet, so I've attached a patch to this email. Hopefully the respective port maintainer can turn it into something useful. --=20 Ed Schouten WWW: http://80386.nl/ --g3yBcqrdPMlHc0Ul-- --/OavacbEee8bSN9S Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (FreeBSD) iEYEARECAAYFAktRqiAACgkQ52SDGA2eCwUFvwCffwPmJ0p4AEdWl7ahXFyD7YO5 Ww4An31yn2v9FakwghrYkAP9j5JISTEP =sBMX -----END PGP SIGNATURE----- --/OavacbEee8bSN9S-- From owner-freebsd-x11@FreeBSD.ORG Sat Jan 16 14:42:10 2010 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 994DD106566B for ; Sat, 16 Jan 2010 14:42:10 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from amailer.gwdg.de (amailer.gwdg.de [134.76.10.18]) by mx1.freebsd.org (Postfix) with ESMTP id 29C848FC17 for ; Sat, 16 Jan 2010 14:42:09 +0000 (UTC) Received: from p578b68b8.dip0.t-ipconnect.de ([87.139.104.184] helo=krabat.raven.hur) by mailer.gwdg.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1NW9Fs-0005wJ-AS; Sat, 16 Jan 2010 15:03:56 +0100 Message-ID: <4B51C74B.3060507@gwdg.de> Date: Sat, 16 Jan 2010 15:03:55 +0100 From: Rainer Hurling User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; de-DE; rv:1.9.1.5) Gecko/20100112 Thunderbird/3.0 MIME-Version: 1.0 To: Ed Schouten References: <4B5179B5.9020902@gwdg.de> <20100116115928.GF64905@hoeg.nl> In-Reply-To: <20100116115928.GF64905@hoeg.nl> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated: Id:rhurlin X-Spam-Level: - X-Virus-Scanned: (clean) by exiscan+sophie Cc: ports@FreeBSD.org, x11@FreeBSD.org Subject: Re: HEADS UP: gone. All welcome . X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2010 14:42:10 -0000 On 16.01.2010 12:59 (UTC+1), Ed Schouten wrote: > Hello Rainer, > > * Rainer Hurling wrote: >> After updating my system i tried to rebuild Xorg ports. All went >> fine until it has to compile x11/sessreg. >> >> It seems that the configure script does not find struct >> 'utmpx.ut_syslen' and so the build process falls back to utmp? >> >> Could you please take a look if this is an issue of the new interface. > > I just looked at this problem and sent a patch to the Xorg folks. I > can't find my email in the xorg-devel archives yet, so I've attached a > patch to this email. Hopefully the respective port maintainer can turn > it into something useful. Ed, many thanks for this patch. There was a small problem with patching sessreg.c: patch < sessreg.diff Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/configure.ac b/configure.ac |index 6e2f470..be1b4b4 100644 |--- a/configure.ac |+++ b/configure.ac -------------------------- Patching file configure.ac using Plan A... Hunk #1 succeeded at 36 with fuzz 2 (offset -3 lines). Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/sessreg.c b/sessreg.c |index c674450..992a213 100644 |--- a/sessreg.c |+++ b/sessreg.c -------------------------- Patching file sessreg.c using Plan A... Hunk #1 succeeded at 80 (offset 5 lines). Hunk #2 succeeded at 88 (offset 5 lines). Hunk #3 succeeded at 101 with fuzz 2 (offset 5 lines). Hunk #4 failed at 115. Hunk #5 succeeded at 189 (offset 5 lines). Hunk #6 succeeded at 197 (offset 5 lines). Hunk #7 succeeded at 234 (offset 5 lines). Hunk #8 succeeded at 262 (offset 5 lines). Hunk #9 succeeded at 280 (offset 5 lines). Hunk #10 succeeded at 299 (offset 5 lines). Hunk #11 succeeded at 342 (offset 5 lines). Hunk #12 succeeded at 394 (offset 5 lines). Hunk #13 succeeded at 441 (offset 5 lines). Hunk #14 succeeded at 449 (offset 5 lines). Hunk #15 succeeded at 462 (offset 5 lines). Hunk #16 succeeded at 481 (offset 5 lines). Hunk #17 succeeded at 549 (offset 5 lines). 1 out of 17 hunks failed--saving rejects to sessreg.c.rej Hmm... The next patch looks like a unified diff to me... The text leading up to this was: -------------------------- |diff --git a/sessreg.h b/sessreg.h |index 6583d57..6b3edc2 100644 |--- a/sessreg.h |+++ b/sessreg.h -------------------------- Patching file sessreg.h using Plan A... Hunk #1 succeeded at 57 (offset 6 lines). done cat sessreg.c.rej *************** *** 108,114 **** */ static int hflag, sflag, xflag, tflag; static char *host_name = NULL; static int slot_number; static char *xservers_file, *ttys_file; static char *user_name; static int aflag, dflag; --- 115,123 ---- */ static int hflag, sflag, xflag, tflag; static char *host_name = NULL; + #ifdef USE_UTMP static int slot_number; + #endif static char *xservers_file, *ttys_file; static char *user_name; static int aflag, dflag; Doing this patch manually works. After patching the port compiles again :-) Rainer From owner-freebsd-x11@FreeBSD.ORG Sat Jan 16 19:20:11 2010 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D44D1065672; Sat, 16 Jan 2010 19:20:11 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [IPv6:2001:7b8:613:100::211]) by mx1.freebsd.org (Postfix) with ESMTP id D95EF8FC08; Sat, 16 Jan 2010 19:20:10 +0000 (UTC) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 4F8CC1CFF8; Sat, 16 Jan 2010 20:20:10 +0100 (CET) Date: Sat, 16 Jan 2010 20:20:10 +0100 From: Ed Schouten To: Rainer Hurling Message-ID: <20100116192010.GL64905@hoeg.nl> References: <4B5179B5.9020902@gwdg.de> <20100116115928.GF64905@hoeg.nl> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XEnj4GqewF/9U9wt" Content-Disposition: inline In-Reply-To: <20100116115928.GF64905@hoeg.nl> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: ports@FreeBSD.org, x11@FreeBSD.org Subject: Re: HEADS UP: gone. All welcome . X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2010 19:20:11 -0000 --XEnj4GqewF/9U9wt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Ed Schouten wrote: > I just looked at this problem and sent a patch to the Xorg folks. I > can't find my email in the xorg-devel archives yet, so I've attached a > patch to this email. Hopefully the respective port maintainer can turn > it into something useful. And it got fixed upstream: http://cgit.freedesktop.org/xorg/app/sessreg/commit/?id=3D9792646873ac0e59= 7cc65ef4a056444fd8f9a7fd I just asked whether they are planning on releasing this soon, because then it might just be easier to bump sessreg than backporting it to our version. --=20 Ed Schouten WWW: http://80386.nl/ --XEnj4GqewF/9U9wt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (FreeBSD) iEYEARECAAYFAktSEWoACgkQ52SDGA2eCwW6UACfdQmJ2C1E2vLeuYK1fFevPF3a gs8AnjnTEDk0jvEGTsqQHnH0cHYBGTYH =x0VQ -----END PGP SIGNATURE----- --XEnj4GqewF/9U9wt--