mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00
xf86-video-intel: Bring 2.20.0 version to match released graphics stack
The Intel Linux graphics stack version 12.07 released on 2012-07-24 requires version 2.20.0 as seen here: http://intellinuxgraphics.org/2012.07.html Currently oecore has 2.19.0 version. So get this 2.20.0 version in meta-intel layer to be used by sugarbay and other BSPs using the Intel graphics stack. Also took changes from version 2.20.8 recipe from Ross Burton's branch. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
parent
5d8a058111
commit
7397bb5b44
|
@ -0,0 +1,27 @@
|
||||||
|
require xorg-driver-video.inc
|
||||||
|
|
||||||
|
SUMMARY = "X.Org X server -- Intel integrated graphics chipsets driver"
|
||||||
|
|
||||||
|
DESCRIPTION = "intel is an Xorg driver for Intel integrated graphics \
|
||||||
|
chipsets. The driver supports depths 8, 15, 16 and 24. On some chipsets, \
|
||||||
|
the driver supports hardware accelerated 3D via the Direct Rendering \
|
||||||
|
Infrastructure (DRI)."
|
||||||
|
|
||||||
|
LIC_FILES_CHKSUM = "file://COPYING;md5=8730ad58d11c7bbad9a7066d69f7808e"
|
||||||
|
|
||||||
|
PR = "${INC_PR}.0"
|
||||||
|
|
||||||
|
DEPENDS += "virtual/libx11 drm xf86driproto glproto \
|
||||||
|
virtual/libgl xineramaproto xf86driproto libpciaccess"
|
||||||
|
|
||||||
|
PACKAGECONFIG ??= ""
|
||||||
|
PACKAGECONFIG[sna] = "--enable-sna,--disable-sna"
|
||||||
|
PACKAGECONFIG[xvmc] = "--enable-xvmc,--disable-xvmc,libxvmc"
|
||||||
|
|
||||||
|
# --enable-kms-only option is required by ROOTLESS_X
|
||||||
|
EXTRA_OECONF += '${@base_conditional( "ROOTLESS_X", "1", " --enable-kms-only", "", d )}'
|
||||||
|
|
||||||
|
COMPATIBLE_HOST = '(i.86|x86_64).*-linux'
|
||||||
|
|
||||||
|
SRC_URI[md5sum] = "070bb866b05a16366bd9bb844c9b91aa"
|
||||||
|
SRC_URI[sha256sum] = "21949297220ceda32bba430f778c6409002079dc717c7190dbd1062ab4a56783"
|
33
common/recipes-graphics/xorg-driver/xorg-driver-common.inc
Normal file
33
common/recipes-graphics/xorg-driver/xorg-driver-common.inc
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
DESCRIPTION = "X driver"
|
||||||
|
HOMEPAGE = "http://www.x.org"
|
||||||
|
BUGTRACKER = "https://bugs.freedesktop.org"
|
||||||
|
SECTION = "x11/drivers"
|
||||||
|
LICENSE = "MIT-X"
|
||||||
|
|
||||||
|
PE = "2"
|
||||||
|
INC_PR = "r0"
|
||||||
|
|
||||||
|
DEPENDS = "virtual/xserver xproto randrproto util-macros"
|
||||||
|
|
||||||
|
SRC_URI = "${XORG_MIRROR}/individual/driver/${BPN}-${PV}.tar.bz2"
|
||||||
|
|
||||||
|
S = "${WORKDIR}/${BPN}-${PV}"
|
||||||
|
|
||||||
|
FILES_${PN} += " ${libdir}/xorg/modules/drivers/*.so"
|
||||||
|
FILES_${PN}-dbg += " ${libdir}/xorg/modules/drivers/.debug"
|
||||||
|
|
||||||
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
|
# AC_CHECK_FILE doesn't work when cross compiling, so we create a replacement
|
||||||
|
# macro that simply assumes the test succeeds.
|
||||||
|
do_configure_prepend () {
|
||||||
|
echo 'AC_DEFUN(CC_AC_CHECK_FILE, $2)' > configure.ac.new
|
||||||
|
sed 's/AC_CHECK_FILE/CC_AC_CHECK_FILE/g' configure.ac >> configure.ac.new
|
||||||
|
mv configure.ac.new configure.ac
|
||||||
|
}
|
||||||
|
|
||||||
|
# FIXME: We don't want to include the libtool archives (*.la) from modules
|
||||||
|
# directory, as they serve no useful purpose. Upstream should fix Makefile.am
|
||||||
|
do_install_append() {
|
||||||
|
find ${D}${libdir}/xorg/modules -regex ".*\.la$" | xargs rm -f --
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
include xorg-driver-common.inc
|
||||||
|
|
||||||
|
DEPENDS =+ "renderproto videoproto xextproto fontsproto"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user