From owner-freebsd-questions@FreeBSD.ORG Mon May 5 07:35:46 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11B8B37B401 for ; Mon, 5 May 2003 07:35:46 -0700 (PDT) Received: from out004.verizon.net (out004pub.verizon.net [206.46.170.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6A2543FAF for ; Mon, 5 May 2003 07:35:44 -0700 (PDT) (envelope-from ej.cerejo@laposte.net) Received: from laposte.net ([68.162.14.181]) by out004.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030505143544.GKCR28930.out004.verizon.net@laposte.net>; Mon, 5 May 2003 09:35:44 -0500 Message-ID: <3EB676B5.1060302@laposte.net> Date: Mon, 05 May 2003 10:35:33 -0400 From: "E. J. Cerejo" User-Agent: Mozilla/5.0 (X11; U; Linux i386; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 X-Accept-Language: en-us, en MIME-Version: 1.0 To: herbert@bugat.at References: <3EB5E668.2030605@netscape.net> <20030505092500.GD3437@TK212017121218.teleweb.at> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out004.verizon.net from [68.162.14.181] at Mon, 5 May 2003 09:35:43 -0500 cc: freebsd-questions@freebsd.org Subject: Re: DRI and ATI Radeon 7000 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2003 14:35:46 -0000 herbert@bugat.at wrote: >On Mon, May 05, 2003 at 12:19:52AM -0400, E. J. Cerejo wrote: > > >>I'm trying to get DRI working, I'm running FBSD-stable, one of the >>latest versions, and I can't get DRI to work. I have an AGP ATI Radeon >>7000 card, and I have a gigabyte motherboard GA-8IRXP ( >>http://www.giga-byte.com/MotherBoard/Products/Products_GA-8IRXP.htm ) >>with an AGP slot specification 2.0 and I followed the instructions on >>http://people.freebsd.org/~anholt/dri/troubleshooting.html but I test it >>by running glxinfo it reports "direct rendering: no". So I tried the >>troubleshooting on that page and here's what I did: >> >>If I do dmesg | grep drm it doesn't find anything. >> >>If I do kldload radeon it gives me this: kldload: can't load radeon: >>Exec format error >> >>If I do dmesg | grep agp I get this: link_elf: symbol agp_get_info undefined >> >>kldstat shows this: >> >>Id Refs Address Size Name >> 1 4 0xc0100000 27ed0c kernel >> 2 1 0xc165f000 2000 fade_saver.ko >> 3 1 0xc1664000 15000 linux.ko >> 5 1 0xc1820000 d000 msdos.ko >> >>Nothing about drm! I think it has to do with the agp_get_info thing >>because I shutdown X that is the message I see in console. >> >>Does anyone know on how to fix this? >> >>Thanks >> >> > >Hei! > >Not sure what you have been doing so far. I did the following to get DRI >working on my FreeBSD 4.8-STABLE system: > >1) Get the latest RELENG_4 sources >2) Adding the following lines to my kernel config: > > device agp > device radeondrm > > (You can find all kernel options or at least most of them in LINT). > >3) make buildworld, make buildkernel, etc. as described in UPDATING >4) Adding the following lines to /etc/X11/XF86Config: > > Load "glx" > Load "dri" > > Section "DRI" > Mode 0666 > EndSection > >5) dmesg reports: > agp0: mem 0xd0000000-0xd7ffffff at >device 0.0 on pci0 > drm0: port 0xc000-0xc0ff mem >0xe1000000-0xe100ffff,0xd8000000-0xdfffffff irq 10 at device 0.0 on pci1 > info: [drm] AGP at 0xd0000000 128MB > info: [drm] Initialized radeon 1.8.0 20020828 on minor 0 > >Hope this helps. > >Herbert >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > > Ok thanks, I got it working now, device radeondrm was missing, those instruction didn't mention anything about it.