X Server: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
Releases prior to 1.8 made use of HAL for input device configuration. | Releases prior to 1.8 made use of HAL for input device configuration. | ||
{{Box File|/etc/X11/xorg.conf| | |||
<pre> | |||
Section "Device" | |||
Identifier "nvidia" | |||
Driver "nvidia" | |||
Option "AddARGBGLXVisuals" "true" | |||
Option "AllowGLXWithComposite" "true" | |||
Option "RenderAccel" "true" | |||
EndSection | |||
</pre> | |||
}} | |||
{{Box File|/etc/hal/fdi/policy/10-x11-input.fdi| | |||
<pre> | |||
<?xml version="1.0" encoding="UTF-8"?> | |||
<deviceinfo version="0.2"> | |||
<device> | |||
<match key="info.capabilities" contains="input.keys"> | |||
<merge key="input.xkb.rules" type="string">base</merge> | |||
<merge key="input.xkb.model" type="string">evdev</merge> | |||
<merge key="input.xkb.layout" type="string">de</merge> | |||
<merge key="input.xkb.variant" type="string">nodeadkeys</merge> | |||
</match> | |||
</device> | |||
</deviceinfo> | |||
</pre> | |||
}} | |||
== X.Org Server 1.8 == | == X.Org Server 1.8 == | ||
Revision as of 15:57, 27 April 2010
X.Org Server 1.7
Releases prior to 1.8 made use of HAL for input device configuration.
X.Org Server 1.8
This release features udev input device management (HAL will be deprecated in the long run), it also adds xorg.conf.d directory support to simplify configuration. You no longer need a /etc/X11/xorg.conf or the previous HAL .fdi files.