mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00
meta-crownbay: new recipe for emgd 1.8 driver binaries
This adds a new recipe for the emgd 1.8 driver binaries. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
parent
d5130815af
commit
d40a58a2d2
0
meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin-1.8/.gitignore
vendored
Normal file
0
meta-crownbay/recipes-graphics/xorg-xserver/emgd-driver-bin-1.8/.gitignore
vendored
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
SUMMARY = "EMGD 1.8 xserver binaries"
|
||||||
|
DESCRIPTION = "EMGD 1.8 includes some userspace binaries that use non-free \
|
||||||
|
licensing. Intel Open Source Technology Center unfortunately has no power \
|
||||||
|
to change that, but tries to make their use as painless as possible. Please \
|
||||||
|
see the README in meta-crownbay/ for instructions on the (simple) manual \
|
||||||
|
steps necessary to make the necessary binaries available to this recipe. \
|
||||||
|
Please do that before building an image."
|
||||||
|
LICENSE = "Intel-binary-only"
|
||||||
|
PR = "r0"
|
||||||
|
|
||||||
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/License.txt;md5=b54f01caaf8483b3cb60c0c40f2bf22d"
|
||||||
|
|
||||||
|
FILESPATH = "${FILE_DIRNAME}/emgd-driver-bin-1.8"
|
||||||
|
|
||||||
|
SRC_URI = "file://lib \
|
||||||
|
file://License.txt"
|
||||||
|
|
||||||
|
FILES_${PN} += "${libdir}/dri ${libdir}/xorg/modules/drivers ${libdir}/*.so"
|
||||||
|
FILES_${PN}-dbg += "${libdir}/xorg/modules/drivers/.debug ${libdir}/dri/.debug"
|
||||||
|
|
||||||
|
S = "${WORKDIR}"
|
||||||
|
|
||||||
|
do_install () {
|
||||||
|
install -d -m 0755 ${D}/${libdir}/dri
|
||||||
|
install -d -m 0755 ${D}/${libdir}/xorg/modules/drivers
|
||||||
|
install -m 0755 ${S}/lib/*.so.* ${D}${libdir}/
|
||||||
|
install -m 0755 ${S}/lib/dri/* ${D}${libdir}/dri/
|
||||||
|
install -m 0755 ${S}/lib/xorg/modules/drivers/* ${D}${libdir}/xorg/modules/drivers/
|
||||||
|
|
||||||
|
ln -sf libEGl.so.1 ${D}${libdir}/libEGl.so
|
||||||
|
ln -sf libGLES_CM.so.1 ${D}${libdir}/libGLES_CM.so
|
||||||
|
ln -sf libGLESv2.so.2 ${D}${libdir}/libGLESv2.so
|
||||||
|
}
|
||||||
|
|
||||||
|
LEAD_SONAME = "libEGL.so"
|
Loading…
Reference in New Issue
Block a user