LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   General (https://www.linuxquestions.org/questions/general-10/)
-   -   no displays found when using fglrx driver - FC6 - X11 (https://www.linuxquestions.org/questions/general-10/no-displays-found-when-using-fglrx-driver-fc6-x11-503815/)

Savet 11-22-2006 01:20 AM

no displays found when using fglrx driver - FC6 - X11
 
I have been trying to get DRI, or graphics acceleration (in one form or another) up and running on FC6.

I have followed the instructions at:

http://www.fedorafaq.org/#radeon

to get my ATI Radeon 7000 card working.

It initially defaulted to the radeon driver, which works without loading the DRI module in my xorg.conf file.

After running the ati-fglrx-config-display enable command, it edits my xorg.conf file as follows:

Code:


Section "ServerLayout"
        Identifier    "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/usr/share/X11/rgb"
        ModulePath  "/usr/lib/xorg/modules"
        FontPath    "unix/:7100"
        FontPath    "built-ins"
EndSection

Section "Module"
        Load  "dbe"
        Load  "extmod"
        Load  "glx"
        Load  "record"
        Load  "vnc"
        Load  "xtrap"
        Load  "dri"
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"
        Identifier  "Monitor0"
        VendorName  "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"

        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option    "NoAccel"                  # [<bool>]
        #Option    "SWcursor"                  # [<bool>]
        #Option    "Dac6Bit"                  # [<bool>]
        #Option    "Dac8Bit"                  # [<bool>]
        #Option    "BusType"                  # [<str>]
        #Option    "CPPIOMode"                # [<bool>]
        #Option    "CPusecTimeout"            # <i>
        #Option    "AGPMode"                  # <i>
        #Option    "AGPFastWrite"              # [<bool>]
        #Option    "AGPSize"                  # <i>
        #Option    "GARTSize"                  # <i>
        #Option    "RingSize"                  # <i>
        #Option    "BufferSize"                # <i>
        #Option    "EnableDepthMoves"          # [<bool>]
        #Option    "EnablePageFlip"            # [<bool>]
        #Option    "NoBackBuffer"              # [<bool>]
        #Option    "DMAForXv"                  # [<bool>]
        #Option    "FBTexPercent"              # <i>
        #Option    "DepthBits"                # <i>
        #Option    "AccelDFS"                  # [<bool>]
        #Option    "PanelOff"                  # [<bool>]
        #Option    "DDCMode"                  # [<bool>]
        #Option    "MonitorLayout"            # [<str>]
        #Option    "IgnoreEDID"                # [<bool>]
        #Option    "UseFBDev"                  # [<bool>]
        #Option    "MergedFB"                  # [<bool>]
        #Option    "CRT2HSync"                # [<str>]
        #Option    "CRT2VRefresh"              # [<str>]
        #Option    "CRT2Position"              # [<str>]
        #Option    "MetaModes"                # [<str>]
        #Option    "MergedDPI"                # [<str>]
        #Option    "MergedXinerama"            # [<bool>]
        #Option    "MergedXineramaCRT2IsScreen0"      # [<bool>]
        #Option    "MergedNonRectangular"      # [<bool>]
        #Option    "MergedMouseRestriction"    # [<bool>]
        #Option    "DisplayPriority"          # [<str>]
        #Option    "PanelSize"                # [<str>]
        #Option    "ForceMinDotClock"          # <freq>
        #Option    "ColorTiling"              # [<bool>]
        #Option    "VideoKey"                  # <i>
        #Option    "RageTheatreCrystal"        # <i>
        #Option    "RageTheatreTunerPort"      # <i>
        #Option    "RageTheatreCompositePort"  # <i>
        #Option    "RageTheatreSVideoPort"    # <i>
        #Option    "TunerType"                # <i>
        #Option    "RageTheatreMicrocPath"    # <str>
        #Option    "RageTheatreMicrocType"    # <str>
        #Option    "RenderAccel"              # [<bool>]
        #Option    "SubPixelOrder"            # [<str>]
        #Option    "ShowCache"                # [<bool>]
        #Option    "DynamicClocks"            # [<bool>]
        #Option    "BIOSHotkeys"              # [<bool>]
        #Option    "VGAAccess"                # [<bool>]
        #Option    "ReverseDDC"                # [<bool>]
        #Option    "LVDSProbePLL"              # [<bool>]
        #Option    "AccelMethod"              # <str>
        #Option    "ConstantDPI"              # [<bool>]
        Identifier  "Card0"
        Driver      "fglrx"
        Option      "UseInternalAGPGART" "no"
        VendorName  "ATI Technologies Inc"
        BoardName  "Radeon RV100 QY [Radeon 7000/VE]"
        Option      "VideoOverlay" "on"
        BusID      "PCI:1:0:0"
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
                Modes    "800x600"
        EndSubSection
EndSection

Section "DRI"
        Group        0
        Mode        0666
EndSection

I have tried it with and without the option:

"UseInternalAGPGART" "no"

When I run startx, it errors out saying "no screens found"

The contents of my Xorg.0.log is as follows:

(too long to post...appending in next post)

I have googled this for hours, and from what I've read, it should be working. Is there something special I need to do to get the fglrx driver to find my screens?

This is a fresh install of FC6, so I'm not opposed to reinstalling, or hacking up the installation. Just give me a starting point lol

Savet 11-22-2006 01:26 AM

Code:

X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: Linux 2.6.9-34.ELsmp i686 Red Hat, Inc.
Current Operating System: Linux localhost.localdomain 2.6.18-1.2849.fc6 #1 SMP Fri Nov 10 12:45:28 EST 2006 i686
Build Date: 04 October 2006
Build ID: xorg-x11-server 1.1.1-47.fc6
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 22 16:19:20 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "Screen0" (0)
(**) |  |-->Monitor "Monitor0"
(**) |  |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"(**) FontPath set to:                                                         
        unix/:7100,
        built-ins
(**) RgbPath set to "/usr/share/X11/rgb"
(**) ModulePath set to "/usr/lib/xorg/modules"
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Module ABI versions:
        X.Org ANSI C Emulation: 0.3
        X.Org Video Driver: 1.0
        X.Org XInput driver : 0.6
        X.Org Server Extension : 0.3
        X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so(II) Module pcidata: vendor="X.Org Foundation"                               
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.0
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3189 card 147b,1401 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b168 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:0b:0: chip 1106,3106 card 1186,1406 rev 86 class 02,00,00 hdr 00
(II) PCI: 00:10:0: chip 1106,3038 card 147b,1401 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:1: chip 1106,3038 card 147b,1401 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:2: chip 1106,3038 card 147b,1401 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:3: chip 1106,3104 card 147b,1401 rev 82 class 0c,03,20 hdr 00
(II) PCI: 00:11:0: chip 1106,3177 card 1106,3177 rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:1: chip 1106,0571 card 147b,1401 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:5: chip 1106,3059 card 147b,1401 rev 50 class 04,01,00 hdr 00
(II) PCI: 00:12:0: chip 1106,3065 card 147b,1401 rev 74 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 1002,5159 card 174b,7112 rev 00 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:        [0] -1  0      0x00000000 - 0x0000ffff (0x10000) IX[B]               
(II) Bus 0 non-prefetchable memory range:
        [0] -1  0      0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
        [0] -1  0      0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 I/O range:
        [0] -1  0      0x0000c000 - 0x0000c0ff (0x100) IX[B]
        [1] -1  0      0x0000c400 - 0x0000c4ff (0x100) IX[B]
        [2] -1  0      0x0000c800 - 0x0000c8ff (0x100) IX[B]
        [3] -1  0      0x0000cc00 - 0x0000ccff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
        [0] -1  0      0xec000000 - 0xec0fffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
        [0] -1  0      0xe0000000 - 0xe7ffffff (0x8000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) ATI Technologies Inc Radeon RV100 QY [Radeon 7000/VE] rev 0, Mem @ 0xe0000000/27, 0xec020000/16, I/O @ 0xc000/8
(II) Addressable bus resource ranges are
        [0] -1  0      0x00000000 - 0xffffffff (0x0)        [1] -1  0      0x00000000 - 0x0000ffff (0x10000) IX[B]               
(II) OS-reported resource ranges:
        [0] -1  0      0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0      0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0      0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1  0      0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0      0x0000ffff - 0x0000ffff (0x1) IX[B]
        [5] -1  0      0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe8000000 from 0xebffffff to 0xe7ffffff
(II) Active PCI resource ranges:
        [0] -1  0      0xec112000 - 0xec1120ff (0x100) MX[B]
        [1] -1  0      0xec111000 - 0xec1110ff (0x100) MX[B]
        [2] -1  0      0xec110000 - 0xec1100ff (0x100) MX[B]
        [3] -1  0      0xe8000000 - 0xe7ffffff (0x0) MX[B]O
        [4] -1  0      0xec020000 - 0xec02ffff (0x10000) MX[B](B)
        [5] -1  0      0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
        [6] -1  0      0x0000e800 - 0x0000e8ff (0x        [11] -1 0      0x0000d400 - 0x0000d41f (0x20) IX[B]                 
        [12] -1 0      0x0000d000 - 0x0000d0ff (0x100) IX[B]
        [13] -1 0      0x0000c000 - 0x0000c0ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
        [0] -1  0      0xec112000 - 0xec1120ff (0x100) MX[B]
        [1] -1  0      0xec111000 - 0xec1110ff (0x100) MX[B]
        [2] -1  0      0xec110000 - 0xec1100ff (0x100) MX[B]
        [3] -1  0      0xe8000000 - 0xe7ffffff (0x0) MX[B]O
        [4] -1  0      0xec020000 - 0xec02ffff (0x10000) MX[B](B)
        [5] -1  0      0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
        [6] -1  0      0x0000e800 - 0x0000e8ff (0x100) IX[B]
        [7] -1  0      0x0000e400 - 0x0000e4ff (0x100) IX[B]
        [8] -1  0      0x0000e000 - 0x0000e00f (0x10) IX[B]
        [9] -1  0      0x0000dc00 - 0x0000dc1f (0x20) IX[B]
        [10] -1 0      0x0000d800 - 0x0000d81f (0x20) IX[B]
        [11] -1 0      0x0000d400 - 0x0000d41f (0x20) IX[B]
        [12] -1 0      0x0000d000 - 0x0000d0ff (0x100) IX[B]
        [13] -1 0      0x0000c000 - 0x0000c0ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
        [0] -1  0      0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0      0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0      0x000c0000 - 0x000effff (0x30000) MX[B]        [3] -1  0      0x00000000 - 0x0009ffff (0xa0000) MX[B]               
        [4] -1  0      0x0000ffff - 0x0000ffff (0x1) IX[B]
        [5] -1  0      0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
        [0] -1  0      0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0      0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0      0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1  0      0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0      0xec112000 - 0xec1120ff (0x100) MX[B]
        [5] -1  0      0xec111000 - 0xec1110ff (0x100) MX[B]
        [6] -1  0      0xec110000 - 0xec1100ff (0x100) MX[B]
        [7] -1  0      0xe8000000 - 0xe7ffffff (0x0) MX[B]O
        [8] -1  0      0xec020000 - 0xec02ffff (0x10000) MX[B](B)
        [9] -1  0      0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
        [10] -1 0      0x0000ffff - 0x0000ffff (0x1) IX[B]
        [11] -1 0      0x00000000 - 0x000000ff (0x100) IX[B]
        [12] -1 0      0x0000e800 - 0x0000e8ff (0x100) IX[B]
        [13] -1 0      0x0000e400 - 0x0000e4ff (0x100) IX[B]
        [14] -1 0      0x0000e000 - 0x0000e00f (0x10) IX[B]
        [15] -1 0      0x0000dc00 - 0x0000dc1f (0x20) IX        [18] -1 0      0x0000d000 - 0x0000d0ff (0x100) IX[B]                 
        [19] -1 0      0x0000c000 - 0x0000c0ff (0x100) IX[B](B)
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC(II) Loading extension XFree86-Misc                                           
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Server Extension, version 0.3
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.13.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension RECORD(II) LoadModule: "vnc"                                                       
(II) Loading /usr/lib/xorg/modules/extensions/libvnc.so
(II) Module vnc: vendor="RealVNC Ltd"
        compiled for 4.3.99.902, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension VNC
(II) LoadModule: "xtrap"
(II) Loading /usr/lib/xorg/modules/extensions/libxtrap.so
(II) Module xtrap: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DEC-XTRAP
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Server Extension, version 0.3
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/lib/xorg/modules/linux/libdrm.so(II) Module drm: vendor="X.Org Foundation"                                   
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(II) LoadModule: "fglrx"
(II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
(II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
        compiled for 7.1.0, module version = 8.31.5
        Module class: X.Org Video Driver
        ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.1.1
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.6
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.1.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.6(II) ATI Radeon/FireGL: The following chipsets are supported:                 
        RADEON 9600 (RV350 4150), RADEON 9600 SE (RV350 4151),
        RADEON 9600 PRO (RV360 4152), RADEON 9600 (RV350 4E51),
        MOBILITY RADEON 9600/9700 (M10/M11 4E50),
        MOBILITY RADEON 9500 (M11 4E52), MOBILITY RADEON 9550 (M12 4E56),
        RADEON 9500 (R300 4144), RADEON 9600 TX (R300 4146),
        FireGL Z1 (R300 4147), RADEON 9700 PRO (R300 4E44),
        RADEON 9500 PRO/9700 (R300 4E45), RADEON 9600 TX (R300 4E46),
        FireGL X1 (R300 4E47), RADEON 9800 SE (R350 4148),
        RADEON 9500 (R350 4149), RADEON 9550 (RV350 4153),
        FireGL T2 (RV350 4154), RADEON 9600 (RV351 4155),
        RADEON 9800 PRO (R350 4E48), RADEON 9800 (R350 4E49),
        RADEON 9800 XT (R360 4E4A), FireGL X2-256/X2-256t (R350 4E4B),
        MOBILITY FireGL T2/T2e (M10/M11 4E54), RADEON X300/X550 (RV370 5B60),
        RADEON X600 (RV380 5B62), RADEON X550 (RV370 5B63),
        FireGL V3100 (RV370 5B64), FireMV 2200 (RV370 5B65),
        MOBILITY RADEON X300 (M22 5460), MOBILITY RADEON X300 (M22 5461),
        MOBILITY RADEON X600 SE (M24 5462), MOBILITY FireGL V3100 (M22 5464),
        RADEON X600/X550 Series (RV380 3E50), FireGL V3200 (RV380 3E54),
        MOBILITY RADEON X600 (M24 3150), FireMV 2400 (RV380 3151),
        MOBILITY RADEON X300 (M22 3152), MOBILITY FireGL V3200 (M24 3154),
        RADEON X800 (R420 4A48), RADEON X800 PRO (R420 4A49),
        RADEON X800 SE (R420 4A4A), RADEON X800 XT (R420 4A4B),               
        RADEON X800 (R420 4A4C), FireGL X3-256 (R420 4A4D),
        MOBILITY RADEON 9800 (M18 4A4E), RADEON X800 SE (R420 4A4F),
        RADEON X800 XT Platinum Edition (R420 4A50),
        RADEON X800 VE (R420 4A54), RADEON X800 (R423 5548),
        RADEON X800 GTO (R423 5549),
        RADEON X800 XT Platinum Edition (R423 554A),
        RADEON X800 GT (R423 554B), RADEON X800 XT (R423 5D57),
        FireGL V7100 (R423 5550), FireGL V5100 (R423 5551),
        MOBILITY RADEON X800 XT (M28 5D48), MOBILITY FireGL V5100 (M28 5D49),
        MOBILITY RADEON X800 (M28 5D4A), RADEON X800 XL (R430 554D),
        RADEON X800 GT (R430 554E), RADEON X800 GTO (R430 554F),
        RADEON X850 XT Platinum Edition (R480 5D4D),
        RADEON X800 GTO (R480 5D4F), FireGL V7200 (R480 5D50),
        RADEON X850 XT (R480 5D52), RADEON X850 (R481 4B48),
        RADEON X850 XT (R481 4B49), RADEON X850 SE (R481 4B4A),
        RADEON X850 PRO (R481 4B4B),
        RADEON X850 XT Platinum Edition (R481 4B4C),
        MOBILITY FireGL V5000 (M26 564A), MOBILITY FireGL V5000 (M26 564B),
        FireGL V5000 (RV410 5E48), RADEON X700 XT (RV410 5E4A),
        RADEON X700 PRO (RV410 5E4B), RADEON X700 SE (RV410 5E4C),
        RADEON X700 (RV410 5E4D), RADEON X700/X550 Series (RV410 5E4F),        MOBILITY RADEON X700 (M26 5652), MOBILITY RADEON X700 (M26 5653),     
        MOBILITY RADEON X700 XL (M26-XC 564F),
        RADEON XPRESS 200 (RS400 5A41), RADEON XPRESS 200M (RS400 5A42),
        RADEON XPRESS 200 (RS480 5954), RADEON XPRESS 200M (RS480 5955),
        RADEON XPRESS 200 (RS482 5974), RADEON XPRESS 200M (RS482 5975),
        RADEON XPRESS 200 (RC410 5A61), RADEON XPRESS 200M (RC410 5A62),
        RADEON X1800 (R520 7100), MOBILITY RADEON X1800 XT (M58 7101),
        MOBILITY RADEON X1800 (M58 7102), MOBILITY FireGL V7200 (M58 7103),
        FireGL V7200 (R520 7104), FireGL V5300 (R520 7105),
        MOBILITY FireGL V7100 (M58 7106), RADEON X1800 Series (R520 7108),
        RADEON X1800 Series (R520 7109), RADEON X1800 Series (R520 710A),
        RADEON X1800 Series (R520 710B), RADEON X1800 Series (R520 710C),
        FireGL V7300 (R520 710E), FireGL V7350 (R520 710F),
        RADEON X1300 PRO (RV505 7143), RADEON X1300 (RV505 7147),
        MOBILITY RADEON X1300 (M52 714B), MOBILITY RADEON X1300 (M52 714C),
        RADEON X1300 Series (RV505 715F), RADEON X1600 Series (RV515 7140),
        RADEON X1300 Series (RV515 7142), MOBILITY FireGL (M54 GL 7144),
        MOBILITY RADEON X1400 (M54 7145), RADEON X1300 Series (RV515 7146),
        MOBILITY RADEON X1300 (M52 7149), MOBILITY RADEON X1300 (M52 714A),
        RADEON X1300 Series (RV515 714D), RADEON X1300 Series (RV515 714E),
        FireGL V3300 (RV515 7152), RADEON X1300 Series (RV515 715E),
        RADEON X1300 (RV516 7180), RADEON X1600 Series (RV516 7181),        RADEON X1300 (RV516 7183), MOBILITY RADEON X1450 (M64P 7186),         
        RADEON X1300 (RV516 7187), MOBILITY RADEON X1350 (M62P 718B),
        MOBILITY RADEON X1350 (M62CSP 718C),
        MOBILITY RADEON X1450 (M64CSP 718D),
        MOBILITY RADEON X1350 (M62S 7196), RADEON X1900 (R580 7240),
        RADEON X1900 (R580 7243), RADEON X1900 (R580 7244),
        RADEON X1900 (R580 7245), RADEON X1900 (R580 7246),
        RADEON X1900 (R580 7247), RADEON X1900 (R580 7248),
        RADEON X1900 (R580 7249), RADEON X1900 (R580 724A),
        RADEON X1900 (R580 724B), RADEON X1900 (R580 724C),
        RADEON X1900 (R580 724D), FireStream 2U (R580 724E),
        FireStream 2U (R580 724F), RADEON X1600 Series (RV530 71C0),
        RADEON X1600 Series (RV530 71C2), MOBILITY FireGL V5200 (M56 71C4),
        MOBILITY RADEON X1600 (M56 71C5),
        RADEON X1650 Series (RV530 XT2 71C6),
        RADEON X1300 Series (RV530 PRO2 71CE), FireGL V3400 (RV530 71D2),
        MOBILITY RADEON X1700 (M66-XT 71D6), FireGL V5200 (RV530 71DA),
        RADEON X1600 Series (RV530 SE 71DE), RADEON X1600 XT (RV535 XT 71C1),
        MOBILITY FireGL V5250 (M66GL 71D4),
        MOBILITY RADEON X1700 (M66-P 71D5), RADEON Xpress 1200 (RS600 7941),
        RADEON Xpress 1200 (RS600 7942)
(II) Primary Device is: PCI 01:00:0
(II) ATI Proprietary Linux Driver Version Identifier:8.31.5                   
(II) ATI Proprietary Linux Driver Release Identifier: LGDr8.31g1                         
(II) ATI Proprietary Linux Driver Build Date: Nov  9 2006 18:43:06
(II) ATI Proprietary Linux Driver Build Information: autobuild-rel-r6-8.31.2.1.2.3-driver-lnx-x86-x86_64-305837
(EE) No devices detected.

Fatal server error:
no screens found
(EOF):







(II) Loading extension XFree86-VidModeExtension
[B]
        [16] -1 0      0x0000d800 - 0x0000d81f (0x20) IX[B]
        [17] -1 0      0x0000d400 - 0x0000d41f (0x20) IX[B]

100) IX[B]
        [7] -1  0      0x0000e400 - 0x0000e4ff (0x100) IX[B]
        [8] -1  0      0x0000e000 - 0x0000e00f (0x10) IX[B]
        [9] -1  0      0x0000dc00 - 0x0000dc1f (0x20) IX[B]
        [10] -1 0      0x0000d800 - 0x0000d81f (0x20) IX[B]
MX[B]


chmac 01-16-2007 11:28 PM

Were you able to resolve it in the end? I'm running an ATI Mobility X1300 and having similar problems.

Cheers - Callum.

Lobais 08-21-2007 03:17 PM

So have I.
Solution anybody?
Perhaps you know if it will work with f7?

chmac 08-21-2007 03:41 PM

Quote:

Originally Posted by Lobais (Post 2866091)
So have I.
Solution anybody?
Perhaps you know if it will work with f7?

I did find a solution, but you might not like it! I took the laptop back, demanded a refund, and bought the same model but with an Intel graphics card instead! :)

Now it works like a charm, although I've never bothered to get dual monitors figured out. F7 worked out of the box. No config required.

Cheers - Callum.


All times are GMT -5. The time now is 10:24 PM.