diff options
Diffstat (limited to 'meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf')
| -rw-r--r-- | meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf b/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf new file mode 100644 index 0000000000..da7f37cebe --- /dev/null +++ b/meta/packages/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf | |||
| @@ -0,0 +1,78 @@ | |||
| 1 | |||
| 2 | Section "Files" | ||
| 3 | EndSection | ||
| 4 | |||
| 5 | Section "InputDevice" | ||
| 6 | Identifier "Generic Keyboard" | ||
| 7 | Driver "kbd" | ||
| 8 | Option "CoreKeyboard" | ||
| 9 | Option "XkbRules" "xorg" | ||
| 10 | Option "XkbModel" "pc105" | ||
| 11 | Option "XkbLayout" "us" | ||
| 12 | EndSection | ||
| 13 | |||
| 14 | Section "InputDevice" | ||
| 15 | Identifier "Configured Mouse" | ||
| 16 | Driver "mouse" | ||
| 17 | Option "CorePointer" | ||
| 18 | Option "Device" "/dev/input/mice" | ||
| 19 | Option "Protocol" "ImPS/2" | ||
| 20 | Option "ZAxisMapping" "4 5" | ||
| 21 | Option "Emulate3Buttons" "true" | ||
| 22 | EndSection | ||
| 23 | |||
| 24 | Section "InputDevice" | ||
| 25 | Identifier "Synaptics Touchpad" | ||
| 26 | Driver "synaptics" | ||
| 27 | Option "SendCoreEvents" "true" | ||
| 28 | Option "Device" "/dev/psaux" | ||
| 29 | Option "Protocol" "auto-dev" | ||
| 30 | Option "HorizEdgeScroll" "0" | ||
| 31 | EndSection | ||
| 32 | |||
| 33 | Section "InputDevice" | ||
| 34 | Driver "wacom" | ||
| 35 | Identifier "stylus" | ||
| 36 | Option "Device" "/dev/input/wacom" | ||
| 37 | Option "Type" "stylus" | ||
| 38 | EndSection | ||
| 39 | |||
| 40 | |||
| 41 | Section "InputDevice" | ||
| 42 | Driver "wacom" | ||
| 43 | Identifier "cursor" | ||
| 44 | Option "Device" "/dev/input/wacom" | ||
| 45 | Option "Type" "cursor" | ||
| 46 | Option "ForceDevice" "ISDV4" # Tablet PC ONLY | ||
| 47 | EndSection | ||
| 48 | |||
| 49 | Section "Device" | ||
| 50 | Identifier "Graphics Controller" | ||
| 51 | Driver "vmware" | ||
| 52 | EndSection | ||
| 53 | |||
| 54 | Section "Monitor" | ||
| 55 | Identifier "Generic Monitor" | ||
| 56 | Option "DPMS" | ||
| 57 | EndSection | ||
| 58 | |||
| 59 | Section "Screen" | ||
| 60 | Identifier "Default Screen" | ||
| 61 | Device "Graphics Controller" | ||
| 62 | Monitor "Generic Monitor" | ||
| 63 | DefaultDepth 24 | ||
| 64 | EndSection | ||
| 65 | |||
| 66 | Section "ServerLayout" | ||
| 67 | Identifier "Default Layout" | ||
| 68 | Screen "Default Screen" | ||
| 69 | InputDevice "Generic Keyboard" | ||
| 70 | InputDevice "Configured Mouse" | ||
| 71 | |||
| 72 | # Uncomment if you have a wacom tablet | ||
| 73 | InputDevice "stylus" "SendCoreEvents" | ||
| 74 | # InputDevice "cursor" "SendCoreEvents" | ||
| 75 | # InputDevice "eraser" "SendCoreEvents" | ||
| 76 | InputDevice "Synaptics Touchpad" | ||
| 77 | EndSection | ||
| 78 | |||
