summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2007-10-19 18:32:31 +0000
committerMichael Olbrich <m.olbrich@pengutronix.de>2007-10-19 18:32:31 +0000
commit74a3609a13ac98a8d577e154d0ae6c7597d608d0 (patch)
tree353434230cdca9a4f5e40e52d6ae1f158769cd19 /generic
parentf9a09dbc14334eed6a624a61158b5df6f8f5751f (diff)
downloadptxdist-74a3609a13ac98a8d577e154d0ae6c7597d608d0.tar.gz
ptxdist-74a3609a13ac98a8d577e154d0ae6c7597d608d0.tar.xz
* add generic xorg.conf
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@7550 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'generic')
-rw-r--r--generic/etc/X11/xorg.conf78
1 files changed, 78 insertions, 0 deletions
diff --git a/generic/etc/X11/xorg.conf b/generic/etc/X11/xorg.conf
new file mode 100644
index 000000000..9fa7fe737
--- /dev/null
+++ b/generic/etc/X11/xorg.conf
@@ -0,0 +1,78 @@
+
+Section "Files"
+ FontPath "/usr/lib/X11/fonts/misc"
+ FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
+ FontPath "/usr/lib/X11/fonts/75dpi"
+EndSection
+
+### Disable default modules
+#Section "Module"
+# Disable "dbe"
+# Disable "glx"
+# Disable "freetype"
+# Disable "type1"
+# Disable "record"
+# Disable "dri"
+#EndSection
+
+Section "InputDevice"
+ Identifier "Generic Keyboard"
+ Driver "keyboard"
+ Option "CoreKeyboard"
+ Option "XkbRules" "xfree86"
+ Option "XkbModel" "pc105"
+ Option "XkbLayout" "de"
+ Option "XkbVariant" "nodeadkeys"
+ Option "XkbOptions" "de"
+EndSection
+
+Section "InputDevice"
+ Identifier "tslib"
+ Driver "tslib"
+ Option "SendCoreEvents"
+ Option "TslibDevice" "/dev/input/event0"
+EndSection
+
+Section "InputDevice"
+ Identifier "Configured Mouse"
+ Driver "mouse"
+ Option "CorePointer"
+ Option "Device" "/dev/input/mice"
+ Option "Protocol" "ImPS/2"
+ Option "Emulate3Buttons" "true"
+ Option "ZAxisMapping" "4 5"
+EndSection
+
+Section "Device"
+ Identifier "Generic Video Card"
+ Driver "fbdev"
+ Option "DontSetTiming" "true"
+EndSection
+
+Section "Monitor"
+ Identifier "Generic Monitor"
+EndSection
+
+Section "Screen"
+ Identifier "Default Screen"
+ Device "Generic Video Card"
+ Monitor "Generic Monitor"
+ DefaultDepth 16
+ SubSection "Display"
+ Depth 16
+ Modes "640x480"
+ EndSubSection
+EndSection
+
+Section "ServerLayout"
+ Identifier "Default Layout"
+ Screen "Default Screen"
+ InputDevice "Generic Keyboard"
+ InputDevice "Configured Mouse"
+ InputDevice "tslib"
+EndSection
+
+Section "ServerFlags"
+ Option "BlankTime" "0"
+EndSection
+