On Fri, Apr 06, 2001 at 06:41:28PM -0400, Jonas M. Meyer wrote:
> Could someone post a step-bystep tutorial of how to get X running at
> the correct (largest) resolution on a TiBook? 

Try using the attached XF86Config. Works for me...

> Additionally, and perhaps related, does anyone know how to make it so
> that I dont have to type "linux video=ofonly" at the yaboot prompt
> every time I start up?  I've tried using "append=video=ofonly" in my
> yaboot.conf file, but that doesnt seem to work.  Also, video=ofonly
> doesnt shut off the graphics accelerator, does it?

You only need video=ofonly for the Debian install. After that, you can
use video=aty128fb. I have append="video=aty128fb" in my yaboot.conf.

-- 
Grant Hollingworth / [EMAIL PROTECTED] / http://okcomputer.antiflux.org
Section "ServerLayout"
        Identifier     "XFree86 Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
#       Option  "Protocol" "Standard"
#       Option  "XkbModel" "macintosh_old"
        Option  "XkbModel" "macintosh"
#       Option  "XkbRules" "xfree86"
#       Option  "XkbRules" "macintosh"
        Option "XkbLayout"      "jp"
        Option "XkbDisable"
#       Option "XkbVariant"     "nodeadkeys"
EndSection

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

Section "Files"
# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

    RgbPath     "/usr/X11R6/lib/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)

    FontPath    "/usr/X11R6/lib/X11/fonts/local/"
    FontPath    "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath    "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    FontPath    "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    FontPath    "/usr/X11R6/lib/X11/fonts/Type1/"
    FontPath    "/usr/X11R6/lib/X11/fonts/CID/"
    FontPath    "/usr/X11R6/lib/X11/fonts/Speedo/"
    FontPath    "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath    "/usr/X11R6/lib/X11/fonts/100dpi/"

# ModulePath can be used to set a search path for the X server modules.
# The default path is shown here.

    ModulePath  "/usr/X11R6/lib/modules"

EndSection

Section "Module"
        Load  "GLcore"
        Load  "dbe"

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

        Load  "glx"
        Load  "pex5"
        Load  "record"
        Load  "xie"
        Load  "type1"
        Load  "speedo"
        Load  "int10"
        Load  "drm"
        Load  "xtt"
EndSection

Section "Monitor"
        Identifier  "Monitor0"
        VendorName  "Apple"
        ModelName   "TitaniumLCD"
        HorizSync       30-100
        VertRefresh     50-160
        Modeline "1152x768" 78.741 1152 1173 1269 1440  768 769 772 800 +HSync 
+VSync
EndSection

Section "Device"
        ### Available Driver options are:-
        #Option     "NoAccel"
        #Option     "SWcursor"
        #Option     "HWcursor"
        #Option     "Dac6Bit"
        #Option     "Dac8Bit"
        Option     "UseFBDev"
        #Option "power_saver"
        Identifier  "Rage 128"
        Driver      "r128"
        BusID       "PCI:0:16:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Rage 128"
        Monitor    "Monitor0"
        DefaultDepth     24 
        SubSection "Display"
                Depth    24 
                Modes "1152x768"
                ViewPort 0 0
                Virtual 1152 768
        EndSubSection
EndSection

Reply via email to