diff options
author | Jeff Dike <jdike@x86_64.user-mode-linux.org> | 2010-07-27 18:26:24 -0400 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-27 22:51:34 -0700 |
commit | ab37f53c7ba4487cbb67e831abd5f5fc80608d29 (patch) | |
tree | 11d044cd0b1d168c1f98baca12af76118663da7b | |
parent | 9d4a4295db68c0045725ae2904cd7816e7a7f640 (diff) | |
download | poky-ab37f53c7ba4487cbb67e831abd5f5fc80608d29.tar.gz |
xserver-xf86-config: Add a netbook xorg.conf with an extra option
The X server on some netbooks don't interact well with HAL with their
keyboard or mouse and consequently one or both is unusable. This
patch adds AutoAddDevices = False to a new netbook-specific
xorg.conf. If this breaks any systems which currently work, we'll
have to figure out what's really going on with hotplug and the X
server.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
-rw-r--r-- | meta/packages/xorg-xserver/xserver-xf86-config/netbook/xorg.conf | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/packages/xorg-xserver/xserver-xf86-config/netbook/xorg.conf b/meta/packages/xorg-xserver/xserver-xf86-config/netbook/xorg.conf new file mode 100644 index 0000000000..897a1d6fef --- /dev/null +++ b/meta/packages/xorg-xserver/xserver-xf86-config/netbook/xorg.conf | |||
@@ -0,0 +1,29 @@ | |||
1 | Section "ServerFlags" | ||
2 | Option "AutoAddDevices" "False" | ||
3 | EndSection | ||
4 | |||
5 | Section "Device" | ||
6 | Identifier "Intel Graphics Driver" | ||
7 | Driver "intel" | ||
8 | EndSection | ||
9 | |||
10 | Section "Monitor" | ||
11 | Identifier "Generic Monitor" | ||
12 | Option "DPMS" | ||
13 | EndSection | ||
14 | |||
15 | Section "Screen" | ||
16 | Identifier "Default Screen" | ||
17 | Device "Intel Graphics Driver" | ||
18 | Monitor "Generic Monitor" | ||
19 | DefaultDepth 24 | ||
20 | EndSection | ||
21 | |||
22 | Section "ServerLayout" | ||
23 | Identifier "Default Layout" | ||
24 | Screen "Default Screen" | ||
25 | EndSection | ||
26 | |||
27 | Section "ServerFlags" | ||
28 | Option "DontZap" "0" | ||
29 | EndSection | ||