View Single Post
  #8   (View Single Post)  
Old 29th March 2010
wilfried's Avatar
wilfried wilfried is offline
Real Name: Peter Strömberg
Port Guard
 
Join Date: May 2008
Location: Teckomatorp, Sweden
Posts: 11
Default

I have an eMac (G4), the one with a build-in crt

My xorg.conf

Code:
Section "ServerLayout"
        Identifier      "wsfb"
        Screen  0       "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
        
Section "Files"
        FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
        FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
        FontPath     "/usr/X11R6/lib/X11/fonts/OTF/"
        FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "Protocol"    "standard"
        Option      "XkbRules"    "xorg"
        Option      "XkbModel"    "macintosh"
        Option      "XkbLayout"   "se"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "wsmouse"
        Option      "Device"   "/dev/wsmouse"
        Option      "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
        Identifier   "Monitor"
        VendorName   "Unknown"
        ModelName    "Unknown"
        DisplaySize  324 243
        Option       "DPMS" "on"
# Adjust those to your monitor before using another device than wsfb 
# or you can destroy it !!
# http://ppcconfdb.sourceforge.net/conf/eMac_G4_1000MHz-ATI_Graphics/etc/X11/XF86Config-4
        HorizSync    30-72
        VertRefresh  50-72
        Modeline     "1280x960@72" 122.25 1280 1328 1424 1696 960 961 964 1002 +hsync +vsync
EndSection
 
# 1280x960 @ 72
# 1152x864 @ 80
# 1024x768 @ 89
#  800x600 @ 112
#  640x480 @ 138

Section "Device"
        Identifier      "Wsdisplay0"
        Driver          "wsfb"
        Option          "device" "/dev/ttyC0"
EndSection

Section "Device"
        Identifier      "Card0"
        Driver          "ati"
        VendorName      "ATI"
        BoardName       "Radeon 7500 QW (AGP/PCI)"
        BusID           "PCI:0:16:0"
EndSection

Section "Screen"
        Identifier "Screen0"
#       Device     "Wsdisplay0"
        Device     "Card0"
        Monitor    "Monitor"
        DefaultDepth 24
        SubSection "Display"
                Depth     8
                Modes     "1280x960@72"
        EndSubSection
        SubSection "Display"
                Depth     16
                Modes     "1280x960@72"
        EndSubSection
        SubSection "Display"
                Depth     24
                Modes     "1280x960@72"
        EndSubSection
EndSection
__________________
HP ProCurve 1800-24G, Phenom 9750, Dual Opteron 265, AMD64 3000+,
Dual P3-800, eMac G4 1.0GHz, Sun Blade 150, Alpha PWS 433 and more ...
Reply With Quote