diff options
author | Russell King <rmk@arm.linux.org.uk> | 2015-06-02 14:53:42 +0100 |
---|---|---|
committer | Russell King <rmk@arm.linux.org.uk> | 2015-06-29 12:58:34 +0100 |
commit | 2e138f3ab75eda32c415b2f510a9a4a991c60cfd (patch) | |
tree | 41a147bc1b9a3313941f64ce08487a2ceee46170 | |
parent | 97e079f689bdcaa7ab878c173bed5112389cd34c (diff) |
conf: provide a sample xorg.conf file
Provide a sample xorg.conf file so that people know what is expected to
make Xorg servers find the driver module.
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
-rw-r--r-- | conf/xorg-sample.conf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/conf/xorg-sample.conf b/conf/xorg-sample.conf new file mode 100644 index 0000000..f21049c --- /dev/null +++ b/conf/xorg-sample.conf @@ -0,0 +1,28 @@ +Section "Device" + Identifier "Driver0" + Screen 0 + Driver "armada" + +# Support hotplugging displays? +# Option "Hotplug" "TRUE" + +# Support hardware cursor if available? +# Option "HWCursor" "TRUE" + +# Use GPU acceleration? +# Option "UseGPU" "TRUE" + +# Provide Xv interfaces? +# Option "XvAccel" "TRUE" + +# Prefer overlay for Xv (TRUE for armada-drm, FALSE for imx-drm) +# Option "XvPreferOverlay" "TRUE" + +# Which accelerator module to load (automatically found if commented out) +# Option "AccelModule" "etnadrm_gpu" +# Option "AccelModule" "etnaviv_gpu" + +# Support DRI2 interfaces? +# Option "DRI" "TRUE" +EndSection + |