View Single Post
  #2  
Old September 21st 03, 02:24 PM
Adam K Kirchhoff
external usenet poster
 
Posts: n/a
Default

In comp.os.linux.x wrote:

Here's dmesg (only listing fglrx lines):
[fglrx] Maximum main memory to use for locked dma buffers: 802 MBytes.
[fglrx:firegl_stub_register] *ERROR* Fire GL kernel module has to be
loaded prior to any other DRM kernel module!


You have another direct rendering module loaded into your kernel (or you
have DRM support for another card compiled directly into your kernel).

cat /proc/dri/0/name

It should list for you the module you have installed.

Something like:

radeon 0xe200 PCI:1:0:0

Then do a 'rmmod radeon' (or whatever module is listed there).

If it says that module isn't loaded, it means that it's compiled
directly into your kernel. You *will* have to recompile the kernel in
that case. If it doesn't give an error message, then it means that that
kernel module is being loaded at some point during the boot process.
You'll have to find out where, and disable it.

Let me know how you make out.

Adam