LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 06-13-2007, 04:40 PM   #1
kellyg1
LQ Newbie
 
Registered: Mar 2006
Posts: 15

Rep: Reputation: 0
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
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Install Beryl on Ubuntu/Kubuntu with ATI Radeon x1300 YevgenyEfter Linux - Desktop 5 01-14-2008 06:38 PM
ati radeon x1300 not supported Suse 10 abourke SUSE / openSUSE 2 05-01-2007 01:46 PM
ati radeon x1300 & Xorg 8.6 ixtys Linux - Hardware 0 11-01-2006 02:46 AM
Suse 10.0 and ATI Radeon X1300 henglong Linux - Hardware 1 07-25-2006 11:17 PM
can't find ati radeon x1300 driver for fedora core 5 lcornea Linux - Hardware 1 06-01-2006 05:29 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 08:45 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration