Gentoo Archives: gentoo-user

From: Alex Schuster <wonko@×××××××××.org>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Trying to configure Radeon card
Date: Wed, 13 Oct 2010 11:26:20
Message-Id: 201010131325.02603.wonko@wonkology.org
In Reply to: [gentoo-user] Trying to configure Radeon card by Jeff Cranmer
1 Jeff Cranmer writes:
2
3 > I have a Sapphire Radeon HD5750 graphics card installed on my Gentoo
4 > box, and I'm having some difficulty configuring it.
5 >
6 > When I run fglrxinfo, I get the OpenGL messages for a basic Mesa
7 > driver.
8
9 Same here, with OpenGL working fine:
10
11 wonko@weird ~ $ fglrxinfo
12 IRQ's not enabled, falling back to busy waits: 2 0
13 display: :0.0 screen: 0
14 OpenGL vendor string: Advanced Micro Devices, Inc.
15 OpenGL renderer string: Mesa DRI R600 (RS780 9610) 20090101 TCL
16 OpenGL version string: 2.0 Mesa 7.8.2
17
18 For more information, use glxinfo, not fglrxinfo, which is from the ati-
19 drivers package:
20
21 wonko@weird ~ $ glxinfo
22 name of display: :0.0
23 IRQ's not enabled, falling back to busy waits: 2 0
24 display: :0 screen: 0
25 direct rendering: Yes
26 server glx vendor string: SGI
27 server glx version string: 1.2
28 server glx extensions:
29 [...]
30
31 But it seems you direct rendering is disabled. Is the drm module loaded?
32 That is, does 'lsmod | grep drm' show it? If not, try loading it with the
33 modprobe command before starting X, and see if there's a difference (diff
34 /var/log/Xort.0.log*).
35 You yould also try the closed-source ati-drivers. Exchange the 'radeon' by
36 'fglrx' in the Device->Driver line for this, and run 'eselect opengl set
37 ati'. Also make sure the fglrx kernel module is loaded, and the drm module
38 is unloaded (and vice versa). You need to havwe 'fglrx' in your
39 VIDEO_CARDS variable in make.conf (and 'radeon' for the open source
40 driver).
41
42
43 > I've attached the xorg.conf file, the Xorg.0.log file, and the results
44 > of the lspci command. Can anyone tell me what I'm doing wrong? I
45 > tried auto-generating an xorg.conf file, but that would result in a
46 > totally blank screen.
47
48 I had blank screens, too, but it was only the mouse missing, which I only
49 saw when I started a window manager, not only X itself.
50
51 Wonko