I am running a freebsd workstation with dual dsplays. One ATI Radeon and one I/O Magic 3DEP (Permedia 2 chipset).  I ran XFreeF86 -configure and it set up both display; however, the Permedia only runs in 640x480x256.  When i comment out the 1,4,8 bit color depths, and add in Modes "1024x768" ines in all remaining susections (see modified at bottom) the screen/card/whatever won't initalize.  How can i get it to work.  The Permedia can handle the resolution/depth i want.  the vesa drivers wont work and cause both screens to have messed up color.
 
Thanks in advance,
Jeff Jeter
 
------------------------XF86Config-------------------------
Section "ServerLayout"
 Identifier     "XFree86 Configured"
 Screen      0  "Screen0" 0 0
 Screen      1  "Screen1" LeftOf "Screen0"
 InputDevice    "Mouse0" "CorePointer"
 InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
 
Section "Files"
 RgbPath      "/usr/X11R6/lib/X11/rgb"
 ModulePath   "/usr/X11R6/lib/modules"
 FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
 FontPath     "/usr/X11R6/lib/X11/fonts/Speedo/"
 FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
 FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
 FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
 FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection
 
Section "Module"
 Load  "extmod"
 Load  "xie"
 Load  "pex5"
 Load  "glx"
 Load  "dri"
 Load  "dbe"
 Load  "record"
EndSection
 
Section "InputDevice"
 Identifier  "Keyboard0"
 Driver      "keyboard"
EndSection
 
Section "InputDevice"
 Identifier  "Mouse0"
 Driver      "mouse"
 Option      "Protocol" "auto"
 Option      "Device" "/dev/mouse"
EndSection
 
Section "Monitor"
 Identifier   "Monitor0"
 VendorName   "NEC"
 ModelName    "NEC FE700"
 HorizSync    31.0 - 70.0
 VertRefresh  40.0 - 150.0
EndSection
 
Section "Monitor"
 Identifier   "Monitor1"
 VendorName   "Monitor Vendor"
 ModelName    "Monitor Model"
EndSection
 
Section "Device"
 ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"             # [<bool>]
        #Option     "SWcursor"            # [<bool>]
        #Option     "Dac6Bit"             # [<bool>]
        #Option     "Dac8Bit"             # [<bool>]
        #Option     "ForcePCIMode"        # [<bool>]
        #Option     "CPPIOMode"           # [<bool>]
        #Option     "CPusecTimeout"       # <i>
        #Option     "AGPMode"             # <i>
        #Option     "AGPSize"             # <i>
        #Option     "RingSize"            # <i>
        #Option     "BufferSize"          # <i>
        #Option     "EnableDepthMoves"    # [<bool>]
        #Option     "UseFBDev"            # [<bool>]
 Identifier  "Card0"
 Driver      "ati"
 VendorName  "ATI"
 BoardName   "Radeon QD"
 BusID       "PCI:1:0:0"
EndSection
 
Section "Device"
 ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "SWcursor"            # [<bool>]
        #Option     "RGBbits"             # <i>
        #Option     "NoAccel"             # [<bool>]
        #Option     "BlockWrite"          # [<bool>]
        #Option     "FireGL3000"          # [<bool>]
        #Option     "Overlay"             # [<str>]
        #Option     "ShadowFB"            # [<bool>]
        #Option     "UseFBDev"            # [<bool>]
        #Option     "UseFlatPanel"        # [<bool>]
 Identifier  "Card1"
 Driver      "glint"
 VendorName  "3Dlabs"
 BoardName   "GLINT Permedia 2v"
 BusID       "PCI:0:10:0"
EndSection
 
Section "Screen"
 Identifier "Screen0"
 Device     "Card0"
 Monitor    "Monitor0"
 SubSection "Display"
  Depth     1
 EndSubSection
 SubSection "Display"
  Depth     4
 EndSubSection
 SubSection "Display"
  Depth     8
 EndSubSection
 SubSection "Display"
  Depth     15
 EndSubSection
 SubSection "Display"
  Depth     16
 EndSubSection
 SubSection "Display"
  Depth     24
 EndSubSection
EndSection
 
Section "Screen"
 Identifier "Screen1"
 Device     "Card1"
 Monitor    "Monitor1"
 SubSection "Display"
  Depth     1
 EndSubSection
 SubSection "Display"
  Depth     4
 EndSubSection
 SubSection "Display"
  Depth     8
 EndSubSection
 SubSection "Display"
  Depth     15
 EndSubSection
 SubSection "Display"
  Depth     16
 EndSubSection
 SubSection "Display"
  Depth     24
 EndSubSection
EndSection
 
--MODIFIED SCREEN 1 SECTION--
Section "Screen"
 Identifier "Screen1"
 Device     "Card1"
 Monitor    "Monitor1"
 #SubSection "Display"
 # Depth     1
 #EndSubSection
 #SubSection "Display"
 # Depth     4
 #EndSubSection
 #SubSection "Display"
 # Depth     8
 #EndSubSection
 SubSection "Display"
  Depth     15
  Modes "1024x768"
 EndSubSection
 SubSection "Display"
  Depth     16
  Modes "1024x768"
 EndSubSection
 SubSection "Display"
  Depth     24
  Modes "1024x768"
 EndSubSection
EndSection

Reply via email to