summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/xorg-xserver
diff options
context:
space:
mode:
authorTrevor Woerner <twoerner@gmail.com>2017-05-27 01:11:08 -0400
committerOtavio Salvador <otavio@ossystems.com.br>2017-05-30 20:09:17 -0300
commitfb1e35f084b684f345854b156b1ff83645c31ed0 (patch)
tree2f8f7cccf9f18d65e10c8abab1b73ae001a4ee81 /recipes-graphics/xorg-xserver
parent2fa9cd5e34095388ba0db350d07e26147a4f15c9 (diff)
downloadmeta-freescale-fb1e35f084b684f345854b156b1ff83645c31ed0.tar.gz
xf86-video-armada: add
If the user enables "use-mainline-bsp" in MACHINEOVERRIDES, assume they want to use the open-source, reverse-engineered etnaviv drm x11 driver. Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-graphics/xorg-xserver')
-rw-r--r--recipes-graphics/xorg-xserver/xserver-xf86-config/use-mainline-bsp/xorg.conf28
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config/use-mainline-bsp/xorg.conf b/recipes-graphics/xorg-xserver/xserver-xf86-config/use-mainline-bsp/xorg.conf
new file mode 100644
index 00000000..b6f83469
--- /dev/null
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config/use-mainline-bsp/xorg.conf
@@ -0,0 +1,28 @@
1Section "Device"
2 Identifier "Driver0"
3 Screen 0
4 Driver "armada"
5
6# Support hotplugging displays?
7 Option "Hotplug" "TRUE"
8
9# Support hardware cursor if available?
10 Option "HWCursor" "TRUE"
11
12# Use GPU acceleration?
13 Option "UseGPU" "TRUE"
14
15# Provide Xv interfaces?
16 Option "XvAccel" "TRUE"
17
18# Prefer overlay for Xv (TRUE for armada-drm, FALSE for imx-drm)
19 Option "XvPreferOverlay" "TRUE"
20
21# Which accelerator module to load (automatically found if commented out)
22 Option "AccelModule" "etnadrm_gpu"
23 Option "AccelModule" "etnaviv_gpu"
24
25# Support DRI2 interfaces?
26 Option "DRI" "TRUE"
27EndSection
28