From owner-freebsd-current@FreeBSD.ORG Thu May 22 19:50:30 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5360A37B401 for ; Thu, 22 May 2003 19:50:30 -0700 (PDT) Received: from empire.explosive.mail.net (empire.explosive.mail.net [205.205.25.120]) by mx1.FreeBSD.org (Postfix) with SMTP id 4E7CE43F93 for ; Thu, 22 May 2003 19:50:29 -0700 (PDT) (envelope-from mykroft@explosive.mail.net) Received: (qmail 18376 invoked from network); 23 May 2003 02:50:03 -0000 Received: from ticking.explosive.mail.net (HELO ticking) (205.205.25.116) by empire.explosive.mail.net with SMTP; 23 May 2003 02:50:03 -0000 Message-ID: <002201c320d6$278b5a00$7419cdcd@ticking> From: "Adam Maas" To: "nobody nobody" , References: Date: Thu, 22 May 2003 22:51:05 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 cc: freebsd-current@freebsd.org cc: freebsd_stable@hotmail.com Subject: Re: Radeon VE won't work with XFree4.3.0.1 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 May 2003 02:50:30 -0000 ----- Original Message ----- From: "nobody nobody" To: Cc: ; Sent: Thursday, May 22, 2003 9:18 PM Subject: Re: Radeon VE won't work with XFree4.3.0.1 > ------XFree86config.new ------ > Section "ServerLayout" > Identifier "XFree86 Configured" > Screen 0 "Screen0" 0 0 > InputDevice "Mouse0" "CorePointer" > InputDevice "Keyboard0" "CoreKeyboard" > EndSection > > Section "Files" > RgbPath "/usr/X11R6/lib/X11/rgb" > ModulePath "/usr/X11R6/lib/modules" > FontPath "/usr/X11R6/lib/X11/fonts/misc/" > FontPath "/usr/X11R6/lib/X11/fonts/Speedo/" > FontPath "/usr/X11R6/lib/X11/fonts/Type1/" > FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" > FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" > EndSection > > Section "Module" > Load "dbe" > Load "dri" > Load "extmod" > Load "glx" > Load "record" > Load "xtrap" > Load "speedo" > Load "type1" > EndSection > > Section "InputDevice" > Identifier "Keyboard0" > Driver "keyboard" > EndSection > > Section "InputDevice" > Identifier "Mouse0" > Driver "mouse" > Option "Protocol" "auto" > Option "Device" "/dev/sysmouse" > EndSection > > Section "Monitor" > Identifier "Monitor0" > VendorName "Monitor Vendor" > ModelName "Monitor Model" > EndSection > > Section "Device" > ### Available Driver options are:- > ### Values: : integer, : float, : "True"/"False", > ### : "String", : " Hz/kHz/MHz" > ### [arg]: arg optional > #Option "NoAccel" # [] > #Option "SWcursor" # [] > #Option "Dac6Bit" # [] > #Option "Dac8Bit" # [] > #Option "ForcePCIMode" # [] > #Option "CPPIOMode" # [] > #Option "CPusecTimeout" # > #Option "AGPMode" # > #Option "AGPFastWrite" # [] > #Option "AGPSize" # > #Option "RingSize" # > #Option "BufferSize" # > #Option "EnableDepthMoves" # [] > #Option "EnablePageFlip" # [] > #Option "NoBackBuffer" # [] > #Option "PanelOff" # [] > #Option "DDCMode" # [] > #Option "CloneDisplay" # > #Option "CloneMode" # [] > #Option "CloneHSync" # [] > #Option "CloneVRefresh" # [] > #Option "UseFBDev" # [] > #Option "VideoKey" # > Identifier "Card0" > Driver "ati" > VendorName "ATI Technologies Inc" > BoardName "Radeon RV100 QY [Radeon 7000/VE]" > BusID "PCI:1:0:0" > EndSection > > Section "Screen" > Identifier "Screen0" > Device "Card0" > Monitor "Monitor0" > SubSection "Display" > Depth 1 > EndSubSection > SubSection "Display" > Depth 4 > EndSubSection > SubSection "Display" > Depth 8 > EndSubSection > SubSection "Display" > Depth 15 > EndSubSection > SubSection "Display" > Depth 16 > EndSubSection > SubSection "Display" > Depth 24 > EndSubSection > EndSection > There are no resolutions defined. That is your problem. pick a colour depth and add a resolution. On my laptop, this is what I use: SubSection "Display" Depth 16 Modes "800x600" That's for 16 bit colour at 800x600. You can pick any resolution that your display supports. If it's an LCD, pick it's nativbe (Or Maximum) resolution. You will also likely want to add Section "DRI" Mode 0666 EndSection to the end of your config file. Adam