Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
ATI card and Black Screen
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Multimedia
View previous topic :: View next topic  
Author Message
Knute
Guru
Guru


Joined: 28 Jun 2004
Posts: 362
Location: Fargo, ND

PostPosted: Wed May 31, 2006 2:08 am    Post subject: ATI card and Black Screen Reply with quote

Alright, I upgraded my video card from a voodoo3 to an ATI Radeon 9250.

I settled on the Radeon for 2 reasons.

1) I have an ATI tv tuner card.
2) It was on sale.

I FINALLY got the video acceleration to run after playing with it all weekend.
Then, I decided to restart X just to make sure that it was all working.
It came back up to a blank screen, and nothing would respond (even numlock and caps lock).
After much gnashing and grinding of teeth, along with much emerge -uavND world, I found that I can get into X if I simply remove my /etc/X11/xorg.conf file.
No acceleration, and things aren't exactly the same size, but I can get into X, and even watch TV!

I just need to find out what's wrong with my xorg.conf file.

Code:
# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************
# **********************************************************************
# Server flags section.
# **********************************************************************
# **********************************************************************
# Input devices
# **********************************************************************
# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************
# **********************************************************************
# Monitor section
# **********************************************************************
# Any number of monitor sections may be present
# **********************************************************************
# Graphics device section
# **********************************************************************
# **********************************************************************
# Screen sections
# **********************************************************************
# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
# **********************************************************************
# ServerLayout sections.
# **********************************************************************
# Section "Extensions"
#    Option "Composite" "Enable"
# EndSection

Section "ServerLayout"

# The Identifier line must be present
    #Option   "IsolateDevice"   "PCI:0:2:0"
   Identifier     "Simple Layout"
   Screen         "Screen 1" 0 0
   InputDevice    "Mouse1" "CorePointer"
   InputDevice    "Keyboard1" "CoreKeyboard"
EndSection

Section "Files"

# The module search path.  The default path is shown here.
   FontPath     "/usr/share/fonts/misc"
   FontPath     "/usr/share/fonts/75dpi"
   FontPath     "/usr/share/fonts/100dpi"
   FontPath     "/usr/share/fonts/TTF"
   FontPath     "/usr/share/fonts/Type1"
   FontPath     "/usr/share/fonts/artwiz"
   FontPath     "/usr/share/fonts/corefonts"
   FontPath     "/usr/share/fonts/cyrillic"
   FontPath     "/usr/share/fonts/freefonts"
   FontPath     "/usr/share/fonts/hunkyfonts"
   FontPath     "/usr/share/fonts/lfpfonts-fix"
   FontPath     "/usr/share/fonts/lfpfonts-var"
EndSection

Section "Module"

# This loads the DBE extension module.
# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
# This loads the font modules
# This loads the GLX module
   Load  "dbe"     # Double buffer extension
   #Load  "GLcore"
   SubSection "extmod"
      Option       "omit xfree86-dga"   # don't initialise the DGA extension
      Option      "omit XVideo"
   EndSubSection
   Load  "type1"
    #Load        "speedo"
   Load  "freetype"
    #Load        "xtt"
   #Load  "glx"
# This loads the DRI module
   Load  "dri"
EndSection

Section "InputDevice"
   Identifier  "Keyboard1"
   Driver      "kbd"
   Option       "AutoRepeat" "500 30"
#   Option       "XkbModel" "hpi6"
   Option       "XkbLayout" "us"
EndSection

Section "InputDevice"

# Identifier and driver
   Identifier  "Mouse1"
   Driver      "mouse"
   Option       "Protocol" "MouseManPlusPS/2"   # MouseManPlus PS/2
   Option       "Device" "/dev/psaux"
   Option       "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
   Identifier   "Emachines"
   HorizSync    30.0 - 72.0
   VertRefresh  50.0 - 160.0
EndSection

Section "Device"

    #BusID   "PCI:0:2:0"
    #VideoRam    65535
    #Option   "DDC"      "False"
    #Option   "NoAccel"   "true"
    # Insert Clocks lines here if appropriate
   Identifier  "TDFX"
   Driver      "tdfx"
EndSection

Section "Device"

   #Option       "TVStandard" "VIDEO"
   Identifier  "ATI"
   Driver      "fglrx"
#   Driver      "radeon"
#   Option       "OpenGLOverlay" "off"
#   Option       "OverlayOnCRTC2" "0"
#   Option       "VideoOverlay" "on"
#   Option       "UseInternalAGPGART" "no"
#   Option       "UseFastTLS" "0"
#   Option       "FSAAEnable" "on"
#   Option      "no_dri" "no"
   #Option      "no_accel" "no"
#   Option      "mtrr" "off"
#   Option      "Capabilities" "0x00000000"
#   Option       "EnablePrivateBackZ" "yes"
#   Option      "AGPFastWrite"   "off"
#   Option       "FSAAEnable" "off"
   #Option       "ForceMonitors" "crt1,notv"
#   Option       "DesktopSetup" "single"
   BusID       "PCI:2:4:0"
EndSection

#Section "Device"
#   Identifier  "ATI2"
#   Driver      "fglrx"
#   Option       "FSAAEnable" "off"
#   BusID       "PCI:2:4:1"
#EndSection

Section "Screen"

   #Option       "DPI" "96x96"
   Identifier "Screen 1"
   Device     "ATI"
   Monitor    "Emachines"
   DefaultDepth     24
   Option       "UseEDIDDpi" "False"
#    DefaultDepth 16
   SubSection "Display"
      Viewport   0 0
      Depth     8
      Modes    "1280x1024" "1024x768" "800x600" "640x480" "400x300" "320x240" "320x200"
   EndSubSection
   SubSection "Display"
      Viewport   0 0
      Depth     16
      Modes    "1280x1024" "1024x768" "800x600" "640x480" "400x300" "320x240" "320x200"
   EndSubSection
   SubSection "Display"
      Viewport   0 0
      Depth     24
      Modes    "1280x1024" "1024x768" "800x600" "640x480" "400x300" "320x240" "320x200"
   EndSubSection
EndSection

Section "DRI"
   Mode         0666
EndSection


_________________
Knute
----------
The human race has one really effective weapon, and that is laughter.
-- Mark Twain

If you want proof of that, take a look at windows sometime. :)
Back to top
View user's profile Send private message
cyblord
Guru
Guru


Joined: 22 May 2006
Posts: 424

PostPosted: Wed May 31, 2006 5:37 am    Post subject: Reply with quote

could this help at all?

http://gentoo-wiki.com/Ati
Back to top
View user's profile Send private message
FunzZy
n00b
n00b


Joined: 15 May 2006
Posts: 21

PostPosted: Wed May 31, 2006 8:50 am    Post subject: Reply with quote

I think upgrade to the last version of ati-drivers or uncomment this line to use kernel agpgart:
#Option "UseInternalAGPGART" "no"
Back to top
View user's profile Send private message
Knute
Guru
Guru


Joined: 28 Jun 2004
Posts: 362
Location: Fargo, ND

PostPosted: Wed May 31, 2006 12:17 pm    Post subject: Reply with quote

cyblord wrote:
could this help at all?

http://gentoo-wiki.com/Ati


Yes, actually, it did.

I was using the dlloader flag.

I'm currently recompiling w/o that flag.

I'll post this evening after it's done.
_________________
Knute
----------
The human race has one really effective weapon, and that is laughter.
-- Mark Twain

If you want proof of that, take a look at windows sometime. :)
Back to top
View user's profile Send private message
Knute
Guru
Guru


Joined: 28 Jun 2004
Posts: 362
Location: Fargo, ND

PostPosted: Thu Jun 01, 2006 11:12 pm    Post subject: Reply with quote

Well, I finally got back into X.

I'm now able to get into X with the xorg file.
I don't have direct rendering though.
I want to play with cedega!!!!!
_________________
Knute
----------
The human race has one really effective weapon, and that is laughter.
-- Mark Twain

If you want proof of that, take a look at windows sometime. :)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Multimedia All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum