[oe-commits] Denis 'Gnutoo' Carikli : xorg.conf: added eee701 support

git version control git at git.openembedded.org
Sun Jan 24 10:39:18 UTC 2010


Module: openembedded.git
Branch: holger/staging-branch
Commit: cb6d4c0d158a38823c458b991e29fcaa07b0e18d
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=cb6d4c0d158a38823c458b991e29fcaa07b0e18d

Author: Denis 'Gnutoo' Carikli <GNUtoo at no-log.org>
Date:   Fri Jan 22 12:25:33 2010 +0100

xorg.conf: added eee701 support

The eeepc 701 has a synaptics touchpad,so we use the synaptics
  driver which gives us more features and is more convenient
  to use,specially with the TapButton1 option,which permit
  to emulate the fact of holding the mouse button while moving

Even if evdev was in the kernel,evdev didn't seem to work for:
  *internal keyboard
  *external keyboard
  *external mouse
So it uses the mouse and kbd driver

---

 .../xserver-xorg-conf/eee701/xorg.conf             |   96 ++++++++++++++++++++
 1 files changed, 96 insertions(+), 0 deletions(-)

diff --git a/recipes/xorg-xserver/xserver-xorg-conf/eee701/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/eee701/xorg.conf
new file mode 100644
index 0000000..8eb78bc
--- /dev/null
+++ b/recipes/xorg-xserver/xserver-xorg-conf/eee701/xorg.conf
@@ -0,0 +1,96 @@
+Section "ServerLayout"
+	Identifier     "X.org Configured"
+	Screen      0  "Screen0" 0 0
+	InputDevice    "Touchpad" 
+	InputDevice    "Keyboard"
+	InputDevice    "Mouse"
+EndSection
+
+Section "Files"
+	ModulePath   "/usr/lib/xorg/modules"
+	FontPath     "/usr/share/fonts/X11/misc"
+EndSection
+
+Section "Module"
+	Load  "dbe"
+	Load  "extmod"
+EndSection
+
+Section "InputDevice"
+	Identifier  "Keyboard"
+	Driver      "kbd"
+	Option 	    "CoreKeyboard"
+EndSection
+
+Section "InputDevice"
+	Identifier  "Touchpad"
+	Driver      "synaptics"
+	Option      "TapButton1" "1"
+	Option	    "CorePointer"
+EndSection
+
+Section "InputDevice"
+        Identifier  "Mouse"
+        Driver      "mouse"
+	Option	    "Protocol" 		"Auto"
+EndSection
+
+
+Section "Monitor"
+	Identifier   "Monitor0"
+	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     "ColorKey"           	# <i>
+        #Option     "CacheLines"         	# <i>
+        #Option     "Dac6Bit"            	# [<bool>]
+        #Option     "DRI"                	# [<bool>]
+        #Option     "NoDDC"              	# [<bool>]
+        #Option     "ShowCache"          	# [<bool>]
+        #Option     "XvMCSurfaces"       	# <i>
+        #Option     "PageFlip"           	# [<bool>]
+	Identifier  "Card0"
+	Driver      "intel"
+	VendorName  "Unknown Vendor"
+	BoardName   "Unknown Board"
+	BusID       "PCI:0:2:0"
+EndSection
+
+Section "Screen"
+	Identifier "Screen0"
+	Device     "Card0"
+	Monitor    "Monitor0"
+	SubSection "Display"
+		Viewport   0 0
+		Depth     1
+	EndSubSection
+	SubSection "Display"
+		Viewport   0 0
+		Depth     4
+	EndSubSection
+	SubSection "Display"
+		Viewport   0 0
+		Depth     8
+	EndSubSection
+	SubSection "Display"
+		Viewport   0 0
+		Depth     15
+	EndSubSection
+	SubSection "Display"
+		Viewport   0 0
+		Depth     16
+	EndSubSection
+	SubSection "Display"
+		Viewport   0 0
+		Depth     24
+	EndSubSection
+EndSection
+





More information about the Openembedded-commits mailing list