summaryrefslogtreecommitdiffstats
path: root/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@intel.com>2011-09-26 15:48:56 -0500
committerTom Zanussi <tom.zanussi@intel.com>2011-09-26 22:52:33 -0500
commit9639c9ceb8b412d861920c9585f9ca6297e290f3 (patch)
tree4bd9b871b9fb696f5b2867c4984728964c872a34 /common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
parentd286d43b6552dc2abffe7888d726d8b08f77b96c (diff)
downloadmeta-intel-9639c9ceb8b412d861920c9585f9ca6297e290f3.tar.gz
meta-intel: fix symlink typo and QA checks in emgd-driver-bin
There was a typo in the libEGL.so symlink creation - this fixes it. It also adds a missing symlink for scope services, and fixes the QA warnings for 'non-dev package contains symlink .so...'. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Diffstat (limited to 'common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb')
-rw-r--r--common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb8
1 files changed, 5 insertions, 3 deletions
diff --git a/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb b/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
index 8f309c92..88e8a551 100644
--- a/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
+++ b/common/recipes-graphics/xorg-xserver/emgd-driver-bin_1.8.bb
@@ -6,7 +6,7 @@ see the README in meta-crownbay/ for instructions on the (simple) manual \
6steps necessary to make the necessary binaries available to this recipe. \ 6steps necessary to make the necessary binaries available to this recipe. \
7Please do that before building an image." 7Please do that before building an image."
8LICENSE = "Intel-binary-only" 8LICENSE = "Intel-binary-only"
9PR = "r0" 9PR = "r1"
10 10
11LIC_FILES_CHKSUM = "file://${WORKDIR}/License.txt;md5=b54f01caaf8483b3cb60c0c40f2bf22d" 11LIC_FILES_CHKSUM = "file://${WORKDIR}/License.txt;md5=b54f01caaf8483b3cb60c0c40f2bf22d"
12 12
@@ -15,7 +15,8 @@ FILESPATH = "${FILE_DIRNAME}/emgd-driver-bin-1.8"
15SRC_URI = "file://lib \ 15SRC_URI = "file://lib \
16 file://License.txt" 16 file://License.txt"
17 17
18FILES_${PN} += "${libdir}/dri ${libdir}/xorg/modules/drivers ${libdir}/*.so" 18FILES_${PN} += "${libdir}/dri ${libdir}/xorg/modules/drivers"
19FILES_${PN}-dev += "${libdir}/*.so"
19FILES_${PN}-dbg += "${libdir}/xorg/modules/drivers/.debug ${libdir}/dri/.debug" 20FILES_${PN}-dbg += "${libdir}/xorg/modules/drivers/.debug ${libdir}/dri/.debug"
20 21
21S = "${WORKDIR}" 22S = "${WORKDIR}"
@@ -27,9 +28,10 @@ do_install () {
27 install -m 0755 ${S}/lib/dri/* ${D}${libdir}/dri/ 28 install -m 0755 ${S}/lib/dri/* ${D}${libdir}/dri/
28 install -m 0755 ${S}/lib/xorg/modules/drivers/* ${D}${libdir}/xorg/modules/drivers/ 29 install -m 0755 ${S}/lib/xorg/modules/drivers/* ${D}${libdir}/xorg/modules/drivers/
29 30
30 ln -sf libEGl.so.1 ${D}${libdir}/libEGl.so 31 ln -sf libEGL.so.1 ${D}${libdir}/libEGL.so
31 ln -sf libGLES_CM.so.1 ${D}${libdir}/libGLES_CM.so 32 ln -sf libGLES_CM.so.1 ${D}${libdir}/libGLES_CM.so
32 ln -sf libGLESv2.so.2 ${D}${libdir}/libGLESv2.so 33 ln -sf libGLESv2.so.2 ${D}${libdir}/libGLESv2.so
34 ln -sf libEMGDScopeServices.so.1.5.15.3226 ${D}${libdir}/libPVRScopeServices.so
33} 35}
34 36
35LEAD_SONAME = "libEGL.so" 37LEAD_SONAME = "libEGL.so"