View Single Post
  #7   (View Single Post)  
Old 26th July 2012
Reinhold Reinhold is offline
New User
 
Join Date: Jul 2010
Posts: 6
Default

Hi daemonfowl,

I happen to have an iMac G3 (bondie blue) running OpenBSD -current. X seems to need an xorg.conf file like this one:
Code:
section "ServerLayout"
   Identifier   "wsfb"
   Screen   0   "Screen0" 0 0
EndSection

Section "Monitor"
   Identifier   "Monitor"
   VendorName   "Unknown"
   ModelName    "Unknown"
   HorizSync    59-62
   VertRefresh  60-110
EndSection

Section "Device"
   Identifier   "Wsdisplay0"
   Driver  "mach64"
   Option "XaaNoScreenToScreenCopy"
   Option "XaaNoScanlineCPUToScreenColorExpandFill"
   Option "XaaNoMono8x8PatternFillRect"
   Option "XaaNoSolidFillRect"
EndSection
   
Section "Screen"
   Identifier "Screen0"
   Device     "Wsdisplay0"
   Monitor    "Monitor"
   DefaultDepth 16
   SubSection "Display"
      Depth    16
      Modes   "1024x768" "800x600"
   EndSubSection
EndSection
It seems to be necessary to disable those four acceleration options in section "Device".

Regards,
Reinhold

Last edited by ocicat; 26th July 2012 at 10:06 AM. Reason: Please use [code] & [/code] tags when posting text file contents.
Reply With Quote