
Originally Posted by
TrentZ
Yes, you put "SWCurosr" in the wrong Device section. It should be in 'aticonfig-Device[0]-0'.
IT WORKS!
Thank you very much for your help.
But i am really a bit surprised that such a strange workaround is needed to avoid total catastrophe with the ati driver
So to sum up, what seems to do the trick for Fedora 11:
Code:
1. Go to init 3 (non graphical mode)
2. as root write "rmmod radeon; rmmod drm;"
3. now run ati-driver setup and verify that it has installed without errors
4. use xorg.conf with correct settings (provided below. "lib64" should be replaced with "lib" for 32bit systems
5. in /etc/modprobe.d/blacklist.conf add lines "blacklist radeon" and "blacklist drm"
6. run "depmod -a"
7. reboot system and pray that it works!
Here is the final xorg.conf that worked
Code:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "aticonfig-Screen[0]-0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "ServerFlags"
Option "AIGLX" "off"
EndSection
Section "Files"
ModulePath "/usr/lib64/xorg/modules"
FontPath "catalogue:/etc/X11/fontpath.d"
FontPath "built-ins"
EndSection
Section "Module"
Load "glx"
Load "dri"
Load "dri2"
Load "extmod"
Load "record"
Load "dbe"
EndSection
Section "Extensions"
Option "Composite" "Disable" #make DRI work with fglrx.
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
#DisplaySize 510 290 # mm
Identifier "Monitor0"
VendorName "ACR"
ModelName "Acer V233H"
HorizSync 30.0 - 94.0
VertRefresh 49.0 - 75.0
Option "DPMS"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:1:0:0"
Option "SWCursor" "true"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection