diff options
Diffstat (limited to 'xorg.conf.o2-fbdev')
-rw-r--r-- | xorg.conf.o2-fbdev | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/xorg.conf.o2-fbdev b/xorg.conf.o2-fbdev new file mode 100644 index 0000000..340908e --- /dev/null +++ b/xorg.conf.o2-fbdev @@ -0,0 +1,69 @@ +Section "Files" + FontPath "/usr/share/fonts/misc" + FontPath "/usr/share/fonts/cyrillic" + FontPath "/usr/share/fonts/100dpi/:unscaled" + FontPath "/usr/share/fonts/75dpi/:unscaled" + FontPath "/usr/share/fonts/TrueType" + FontPath "/usr/share/fonts/Type1" + FontPath "/usr/share/fonts/Speedo" +EndSection + +Section "Module" +EndSection + +Section "InputDevice" + Identifier "Generic Keyboard" + Driver "kbd" + Option "CoreKeyboard" +EndSection + +Section "InputDevice" + Identifier "Mouse1" + Driver "mouse" + Option "CorePointer" + Option "Device" "/dev/input/mice" + Option "Protocol" "ImPS/2" + Option "ZAxisMapping" "4 5" +EndSection + +#to connect a mouse on a serial port... +#Section "InputDevice" +# Identifier "Mouse2" +# Driver "mouse" +# Option "Device" "/dev/ttyS1" +# Option "Protocol" "Auto" +#EndSection + + +Section "Device" + Identifier "SGIdevice" + Driver "fbdev" +EndSection + +Section "Monitor" + Identifier "SGImonitor" + HorizSync 31-65 + VertRefresh 55-100 +EndSection + +Section "Screen" + Identifier "Default Screen" + Device "SGIdevice" + Monitor "SGImonitor" + DefaultDepth 15 + SubSection "Display" + Depth 15 + EndSubSection +EndSection + +Section "ServerLayout" + Identifier "Default Layout" + Screen "Default Screen" + InputDevice "Generic Keyboard" + InputDevice "Mouse1" "CorePointer" + #InputDevice "Mouse2" "SendCoreEvents" # for the serial mouse +EndSection + +Section "DRI" + Mode 0666 +EndSection |