summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-driver
diff options
context:
space:
mode:
authorYu Ke <ke.yu@intel.com>2011-02-22 20:36:45 +0800
committerSaul Wold <sgw@linux.intel.com>2011-02-23 10:55:10 -0800
commit8d1847a9088628ee2358931d7956b6d0bdef983b (patch)
tree5b8a8840efe4be38d3e602ad37ccffa50739befa /meta/recipes-graphics/xorg-driver
parent0697f34aa2b9d9f0e9413e6a24e02e0729f71262 (diff)
downloadpoky-8d1847a9088628ee2358931d7956b6d0bdef983b.tar.gz
xf86-video-intel: add config option to support rootless X
- add global config option ROOTLESS_X to control if enable rootless X for the machine. ROOTLESS_X requires graphics driver supporting KMS (kernel mode setting), so far, only atom_pc support this. so enable ROOTLESS_X for atom_pc machine - add config options for xf86-video-intel to support rootless X Signed-off-by: Yu Ke <ke.yu@intel.com>
Diffstat (limited to 'meta/recipes-graphics/xorg-driver')
-rw-r--r--meta/recipes-graphics/xorg-driver/xf86-video-intel_2.14.0.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.14.0.bb b/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.14.0.bb
index 017a2e0a28..099cf9dff2 100644
--- a/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.14.0.bb
+++ b/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.14.0.bb
@@ -9,8 +9,13 @@ Infrastructure (DRI)."
9 9
10LIC_FILES_CHKSUM = "file://COPYING;md5=8730ad58d11c7bbad9a7066d69f7808e" 10LIC_FILES_CHKSUM = "file://COPYING;md5=8730ad58d11c7bbad9a7066d69f7808e"
11 11
12PR = "r1"
13
12EXTRA_OECONF += "--disable-xvmc" 14EXTRA_OECONF += "--disable-xvmc"
13 15
16# --enable-kms-only option is required by ROOTLESS_X
17EXTRA_OECONF += '${@base_conditional( "ROOTLESS_X", "1", " --enable-kms-only", "", d )}'
18
14DEPENDS += "virtual/libx11 libxvmc drm xf86driproto glproto \ 19DEPENDS += "virtual/libx11 libxvmc drm xf86driproto glproto \
15 virtual/libgl xineramaproto xf86driproto libpciaccess" 20 virtual/libgl xineramaproto xf86driproto libpciaccess"
16 21