blob: 8b5181338942c283d02ff2e4459cce5f8b77104f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
require libgles-omap3.inc
DEFAULT_PREFERENCE = "1"
# download required binary distribution from:
# http://software-dl.ti.com/dsps/forms/export.html?prod_no=/OMAP35x_Graphics_SDK_setuplinux_3_00_00_09.bin
PR = "r2"
SGXPV = "3_00_00_09"
IMGPV = "1.3.13.1832"
BINFILE := "OMAP35x_Graphics_SDK_setuplinux_${SGXPV}.bin"
# The ES2.x and ES3.x CPUs have different SGX hardware, so we need to install 2 sets of userspace
do_install_append() {
install -d ${D}${libdir}/ES3.0
install -d ${D}${libdir}/ES2.0
install -d ${D}${bindir}/ES3.0
install -d ${D}${bindir}/ES2.0
cp ${S}/gfx_rel_es2.x/lib* ${D}${libdir}/ES2.0/
cp ${S}/gfx_rel_es2.x/p[dv]* ${D}${bindir}/ES2.0/
cp ${D}${libdir}/lib*${IMGPV} ${D}${libdir}/ES3.0/
cp ${D}${bindir}/p[dv]* ${D}${bindir}/ES3.0
}
# Quality control is really poor on these SDKs, so hack around the latest madness:
FILES_${PN} += "${libdir}/*.so"
FILES_${PN}-dev = "${includedir}"
|