LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Ubuntu (https://www.linuxquestions.org/questions/ubuntu-63/)
-   -   Trying to enable s-video out on ATI Radeon X1300 (https://www.linuxquestions.org/questions/ubuntu-63/trying-to-enable-s-video-out-on-ati-radeon-x1300-561585/)

kellyg1 06-13-2007 04:40 PM

Trying to enable s-video out on ATI Radeon X1300
 
I'm running into errors trying to enable my tvout (s-video) under Ubuntu Feisty Fawn. I'm using an ATI X1300 Radeon.

When I boot I get these messages:
(WW) fglrx: No matching Device section found for instance (BusID PCI:1:0:1)
(EE) fglrx(0): PreInitDAL failed
(EE) fglrx(0): PreInit failed

I have tried using PCI:1:0:0 and PCI:1:0:0. Doesn't seem to change that first message.

Thanks in advance for any help you can give,
Kelly (kellyg1)

Code:

# my xorg.conf
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#  sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
    Fontpath    "/usr/share/fonts/X11/misc"
    Fontpath    "/usr/share/fonts/X11/cyrillic"
    Fontpath    "/usr/share/fonts/X11/100dpi/:unscaled"
    Fontpath    "/usr/share/fonts/X11/75dpi/:unscaled"
    Fontpath    "/usr/share/fonts/X11/Type1"
    Fontpath    "/usr/share/fonts/X11/100dpi"
    Fontpath    "/usr/share/fonts/X11/75dpi"
    # path to defoma fonts
    Fontpath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
    Load        "i2c"
    Load        "bitmap"
    Load        "ddc"
    Load        "dri"
    Load        "extmod"
    Load        "freetype"
    Load        "glx"
    Load        "int10"
    Load        "vbe"
EndSection

Section "InputDevice"
    Identifier    "Generic Keyboard"
    Driver        "kbd"
    Option        "CoreKeyboard"
    Option        "XkbRules"    "xorg"
    Option        "XkbModel"    "pc105"
    Option        "XkbLayout"    "us"
EndSection

Section "InputDevice"
    Identifier    "Configured Mouse"
    Driver        "mouse"
    Option        "CorePointer"
    Option        "Device"    "/dev/input/mice"
    Option        "Protocol"    "ImPS/2"
    Option        "ZAxisMapping"    "4 5"
    Option        "Emulate3Buttons"    "true"
EndSection

Section "InputDevice"
    Driver        "wacom"
    Identifier    "stylus"
    Option        "Device"    "/dev/input/wacom"
    Option        "Type"    "stylus"
    Option        "ForceDevice"    "ISDV4"# Tablet PC ONLY
EndSection

Section "InputDevice"
    Driver        "wacom"
    Identifier    "eraser"
    Option        "Device"    "/dev/input/wacom"
    Option        "Type"    "eraser"
    Option        "ForceDevice"    "ISDV4"# Tablet PC ONLY
EndSection

Section "InputDevice"
    Driver        "wacom"
    Identifier    "cursor"
    Option        "Device"    "/dev/input/wacom"
    Option        "Type"    "cursor"
    Option        "ForceDevice"    "ISDV4"# Tablet PC ONLY
EndSection

Section "Device"
    Identifier    "ATI Video Card"
    Driver        "fglrx"
    Busid        "PCI:1:0:0"
    Screen        0   
EndSection

Section    "Device"
    Identifier    "ATI tvout"
    Driver        "fglrx"
    BusID        "PCI:1:0:1"
    Screen        1
    Option        "TVOutFormat"    "SVIDEO" #COMPOSITE SVIDEO RGB
    Option        "TVStandard"    "NTSC-M"
    Option        "ConnectedMonitor"    "TV"
EndSection

Section "Monitor"
    Identifier    "SyncMaster"
    Option        "DPMS"
EndSection

Section "Monitor"
    Identifier    "TV"
    Option        "HorizSync"    "30-50"
    Option        "VertRefresh"    "50"
EndSection

Section "Screen"
    Identifier    "Screen0"
    Device        "ATI Video Card"
    Monitor        "SyncMaster"
    Defaultdepth    24
    SubSection "Display"
        Depth    1
        Modes    "1680x1050"    "1280x1024"    "1024x768"    "800x600"    "720x400"    "640x480"
    EndSubSection
    SubSection "Display"
        Depth    4
        Modes    "1680x1050"    "1280x1024"    "1024x768"    "800x600"    "720x400"    "640x480"
    EndSubSection
    SubSection "Display"
        Depth    8
        Modes    "1680x1050"    "1280x1024"    "1024x768"    "800x600"    "720x400"    "640x480"
    EndSubSection
    SubSection "Display"
        Depth    15
        Modes    "1680x1050"    "1280x1024"    "1024x768"    "800x600"    "720x400"    "640x480"
    EndSubSection
    SubSection "Display"
        Depth    16
        Modes    "1680x1050"    "1280x1024"    "1024x768"    "800x600"    "720x400"    "640x480"
    EndSubSection
    SubSection "Display"
        Depth    24
        Modes    "1680x1050"    "1280x1024"    "1024x768"    "800x600"    "720x400"    "640x480"
    EndSubSection
EndSection

Section    "Screen"
    Identifier    "Screen1"
    Device        "ATI tvout"
    Monitor        "TV"
    DefaultDepth    24
    SubSection    "Display"
        Depth        24
        Modes        "640x480"
    EndSubsection
EndSection

Section "ServerLayout"
    Identifier    "Default Layout"
    Screen    0    "Screen0"
    Screen    1    "Screen1" rightOf "Screen0"
    Inputdevice    "Generic Keyboard"
    Inputdevice    "Configured Mouse"
    Inputdevice    "stylus"    "SendCoreEvents"
    Inputdevice    "cursor"    "SendCoreEvents"
    Inputdevice    "eraser"    "SendCoreEvents"
EndSection

Section "DRI"
    Mode    0666
EndSection

Section "Extensions"
    Option        "Composite"    "0"
EndSection



All times are GMT -5. The time now is 03:26 AM.