diff options
Diffstat (limited to 'recipes-graphics/xorg-driver/xf86-video-imxfb-vivante.inc')
| -rw-r--r-- | recipes-graphics/xorg-driver/xf86-video-imxfb-vivante.inc | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante.inc b/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante.inc new file mode 100644 index 000000000..684cdb4c8 --- /dev/null +++ b/recipes-graphics/xorg-driver/xf86-video-imxfb-vivante.inc | |||
| @@ -0,0 +1,79 @@ | |||
| 1 | # Copyright (C) 2012-2015 Freescale Semiconductor | ||
| 2 | # Copyright (C) 2012-2014 O.S. Systems Software LTDA. | ||
| 3 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
| 4 | |||
| 5 | require recipes-graphics/xorg-driver/xorg-driver-video.inc | ||
| 6 | |||
| 7 | PE = "3" | ||
| 8 | |||
| 9 | inherit autotools-brokensep update-rc.d pkgconfig | ||
| 10 | |||
| 11 | DEPENDS += "virtual/xserver virtual/libx11 virtual/libgal-x11 imx-gpu-viv pixman" | ||
| 12 | |||
| 13 | LIC_FILES_CHKSUM = "file://EXA/src/vivante_fbdev/vivante.h;endline=19;md5=95cf961a2ceacdf7cf43caef25766779" | ||
| 14 | |||
| 15 | SRC_URI = "${FSL_MIRROR}/xserver-xorg-video-imx-viv-${PV}.tar.gz \ | ||
| 16 | file://rc.autohdmi" | ||
| 17 | |||
| 18 | INITSCRIPT_PACKAGES = "xserver-xorg-extension-viv-autohdmi" | ||
| 19 | INITSCRIPT_NAME = "rc.autohdmi" | ||
| 20 | INITSCRIPT_PARAMS = "start 99 2 3 4 5 ." | ||
| 21 | |||
| 22 | EXTRA_OEMAKE += "-C ${S} -d -f Makefile prefix=${D}/usr \ | ||
| 23 | sysroot=${STAGING_DIR_TARGET} \ | ||
| 24 | BUSID_HAS_NUMBER=1 \ | ||
| 25 | BUILD_IN_YOCTO=1 \ | ||
| 26 | XSERVER_GREATER_THAN_13=1" | ||
| 27 | |||
| 28 | CFLAGS += "-I${STAGING_INCDIR}/xorg \ | ||
| 29 | -I${STAGING_INCDIR}/drm \ | ||
| 30 | -I../../DRI_1.10.4/src" | ||
| 31 | |||
| 32 | S = "${WORKDIR}/xserver-xorg-video-imx-viv-${PV}/" | ||
| 33 | |||
| 34 | PACKAGES =+ "xserver-xorg-extension-viv-autohdmi" | ||
| 35 | |||
| 36 | # FIXME: The Freescale provided Makefile has hardcodec include paths | ||
| 37 | # and this does not work in case prefix is different than /usr, | ||
| 38 | # sed it. | ||
| 39 | do_configure_prepend () { | ||
| 40 | sed -i 's,$(sysroot)/usr/include,${STAGING_INCDIR},g' \ | ||
| 41 | ${S}EXA/src/makefile.linux | ||
| 42 | } | ||
| 43 | |||
| 44 | # FIXME: This is need as Freescale didn't use standard Makefile filename | ||
| 45 | # thus oe_runmame thinks nothing is need to be done, use ln to | ||
| 46 | # workaround it. | ||
| 47 | base_do_compile () { | ||
| 48 | oe_runmake || die "make failed" | ||
| 49 | } | ||
| 50 | |||
| 51 | do_install_append () { | ||
| 52 | install -d ${D}${includedir} | ||
| 53 | cp -axr ${S}/EXA/src/vivante_gal/vivante_priv.h ${D}${includedir} | ||
| 54 | cp -axr ${S}/EXA/src/vivante_gal/vivante_gal.h ${D}${includedir} | ||
| 55 | |||
| 56 | install -d ${D}/${sysconfdir}/init.d | ||
| 57 | install -m 755 ${WORKDIR}/rc.autohdmi ${D}/${sysconfdir}/init.d/rc.autohdmi | ||
| 58 | |||
| 59 | find ${D}${includedir} -type f -exec chmod 660 {} \; | ||
| 60 | } | ||
| 61 | |||
| 62 | RDEPENDS_${PN} += "libvivante-dri-mx6 \ | ||
| 63 | xserver-xorg-module-exa \ | ||
| 64 | mesa-driver-swrast \ | ||
| 65 | xserver-xorg-extension-dri \ | ||
| 66 | xserver-xorg-extension-dri2 \ | ||
| 67 | xserver-xorg-extension-glx" | ||
| 68 | |||
| 69 | REALSOLIBS := "${SOLIBS}" | ||
| 70 | SOLIBS = "${SOLIBSDEV}" | ||
| 71 | |||
| 72 | FILES_${PN} = "${libdir}/*/*/*/vivante_drv${SOLIBS}" | ||
| 73 | FILES_${PN}-dev = "${includedir} /usr/src ${libdir}/libfsl_x11_ext${SOLIBSDEV}" | ||
| 74 | FILES_${PN}-dbg = "${libdir}/*/*/*/.debug ${libdir}/.debug/libfsl_x11_ext${SOLIBS} ${exec_prefix}/bin/.debug/autohdmi" | ||
| 75 | |||
| 76 | FILES_xserver-xorg-extension-viv-autohdmi = " ${libdir}/libfsl_x11_ext${SOLIBS} ${exec_prefix}/bin/autohdmi ${sysconfdir}/init.d/rc.autohdmi" | ||
| 77 | |||
| 78 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | ||
| 79 | COMPATIBLE_MACHINE = "(mx6)" | ||
