diff options
author | Ross Burton <ross.burton@intel.com> | 2014-07-15 17:40:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-16 10:20:48 +0100 |
commit | 7b455c5c6038b23d2d8e62d670bcb1378a9e2ff3 (patch) | |
tree | dd7fd0a2adf1f9ecbf6f574c2f938f3f7c0e7fc3 /meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.912.bb | |
parent | eca8a56a4e41780a4b383cbca26478c2e90f8e81 (diff) | |
download | poky-7b455c5c6038b23d2d8e62d670bcb1378a9e2ff3.tar.gz |
xf86-video-intel: upgrade to 2.99.912
Drop a backported patch that has been applied.
Apply a patch from upstream to add enable/disable options for each DRI level, as
.912 won't build if the X server doesn't support DRI3. Add PACKAGECONFIG
options for each DRI level and enable DRI1 and DRI2.
Add a PACKAGECONFIG option for the client tools, disabled by default as they're
only useful on machines with hybrid discrete/integrated GPUs.
(From OE-Core rev: ac029cf6a228a00956978f186aef2c0f05bb8731)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.912.bb')
-rw-r--r-- | meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.912.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.912.bb b/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.912.bb new file mode 100644 index 0000000000..07776908ad --- /dev/null +++ b/meta/recipes-graphics/xorg-driver/xf86-video-intel_2.99.912.bb | |||
@@ -0,0 +1,36 @@ | |||
1 | require xorg-driver-video.inc | ||
2 | |||
3 | SUMMARY = "X.Org X server -- Intel integrated graphics chipsets driver" | ||
4 | |||
5 | DESCRIPTION = "intel is an Xorg driver for Intel integrated graphics \ | ||
6 | chipsets. The driver supports depths 8, 15, 16 and 24. On some chipsets, \ | ||
7 | the driver supports hardware accelerated 3D via the Direct Rendering \ | ||
8 | Infrastructure (DRI)." | ||
9 | |||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=8730ad58d11c7bbad9a7066d69f7808e" | ||
11 | |||
12 | SRC_URI += "file://configure-dri.patch" | ||
13 | |||
14 | SRC_URI[md5sum] = "88d1a884f9b7bd07bf0755cfa34052d4" | ||
15 | SRC_URI[sha256sum] = "7c8ffc492d59f34cac64093deb70717b4d9223cf416ecc6fa016ab2e8bde9501" | ||
16 | |||
17 | DEPENDS += "virtual/libx11 drm libpciaccess pixman" | ||
18 | |||
19 | PACKAGECONFIG ??= "sna udev ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'dri dri1 dri2', '', d)}" | ||
20 | |||
21 | PACKAGECONFIG[dri] = "--enable-dri,--disable-dri" | ||
22 | PACKAGECONFIG[dri1] = "--enable-dri1,--disable-dri1,xf86driproto" | ||
23 | PACKAGECONFIG[dri2] = "--enable-dri2,--disable-dri2,dri2proto" | ||
24 | PACKAGECONFIG[dri3] = "--enable-dri3,--disable-dri3,dri3proto" | ||
25 | PACKAGECONFIG[sna] = "--enable-sna,--disable-sna" | ||
26 | PACKAGECONFIG[uxa] = "--enable-uxa,--disable-uxa" | ||
27 | PACKAGECONFIG[udev] = "--enable-udev,--disable-udev,udev" | ||
28 | PACKAGECONFIG[xvmc] = "--enable-xvmc,--disable-xvmc,libxvmc" | ||
29 | PACKAGECONFIG[tools] = "--enable-tools,--disable-tools,libxinerama libxrandr libxdamage libxfixes libxcursor libxtst libxext libxrender" | ||
30 | |||
31 | # --enable-kms-only option is required by ROOTLESS_X | ||
32 | EXTRA_OECONF += '${@base_conditional( "ROOTLESS_X", "1", " --enable-kms-only", "", d )}' | ||
33 | |||
34 | COMPATIBLE_HOST = '(i.86|x86_64).*-linux' | ||
35 | |||
36 | FILES_${PN} += "${datadir}/polkit-1" | ||