summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2012-11-14 15:21:10 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-20 15:31:54 +0000
commit0ed7c53de9eb44f1f6105361e3639f6ddbeecdc5 (patch)
tree4c2ec58f78477af5fed7ef6f3f18440ec9e930db /meta/recipes-graphics
parentf2be9561d9f07e89d3d65aa6301c3e7bceab8d79 (diff)
downloadpoky-0ed7c53de9eb44f1f6105361e3639f6ddbeecdc5.tar.gz
xf86-video-omap: add new recipe to follow the maintained repo
This new recipe is needed because the old driver is unmaintained. This new recipe will follow the new repo. (From OE-Core rev: a1d93e6383396dc3ff7cd3a4fccf27895e80af8a) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r--meta/recipes-graphics/xorg-driver/xf86-video-omap_git.bb31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-omap_git.bb b/meta/recipes-graphics/xorg-driver/xf86-video-omap_git.bb
new file mode 100644
index 0000000000..b3177ebb4d
--- /dev/null
+++ b/meta/recipes-graphics/xorg-driver/xf86-video-omap_git.bb
@@ -0,0 +1,31 @@
1require xorg-driver-video.inc
2
3SUMMARY = "X.Org X server -- Texas Instruments OMAP framebuffer driver"
4
5DESCRIPTION = "omap driver supports the basic Texas Instruments OMAP \
6framebuffer."
7
8LICENSE = "GPLv2+"
9LIC_FILES_CHKSUM = "file://COPYING;md5=10ce5de3b111315ea652a5f74ec0c602"
10DEPENDS += "virtual/libx11 libdrm"
11
12RPROVIDES = "xf86-video-omapfb"
13RCONFLICTS = "xf86-video-omapfb"
14RREPLACES = "xf86-video-omapfb"
15
16SRCREV = "ae0394e687f1a77e966cf72f895da91840dffb8f"
17PR = "${INC_PR}.0"
18PV = "0.4.2+gitr${SRCPV}"
19
20SRC_URI = "git://anongit.freedesktop.org/xorg/driver/xf86-video-omap;protocol=git \
21"
22
23S = "${WORKDIR}/git"
24
25EXTRA_OECONF_armv7a = " --enable-neon "
26CFLAGS += " -I${STAGING_INCDIR}/xorg "
27
28# Use overlay 2 on omap3 to enable other apps to use overlay 1 (e.g. dmai or omapfbplay)
29do_compile_prepend_armv7a () {
30 sed -i -e s:fb1:fb2:g ${S}/src/omap_xv.c
31}