diff options
author | Denys Dmytriyenko <denys@ti.com> | 2016-04-25 23:56:26 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2016-04-26 14:54:54 -0400 |
commit | c70102c671f120822edc7743401e821ea4f40e4f (patch) | |
tree | 3cc0d2c11d7707a27c308f25a8ab04dd9aa01191 /recipes-graphics | |
parent | 7ae1abe462d8eafc378f10d2e6f23aeac61fed6c (diff) | |
download | meta-ti-c70102c671f120822edc7743401e821ea4f40e4f.tar.gz |
sgx: rename and clean up kernel and user space components
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-graphics')
-rw-r--r-- | recipes-graphics/libgles/ti-sgx-ddk-um_1.14.3699939.bb (renamed from recipes-graphics/libgles/omap5-sgx-ddk-um-linux_1.14.3699939.bb) | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/recipes-graphics/libgles/omap5-sgx-ddk-um-linux_1.14.3699939.bb b/recipes-graphics/libgles/ti-sgx-ddk-um_1.14.3699939.bb index a79c61fb..c29b9fee 100644 --- a/recipes-graphics/libgles/omap5-sgx-ddk-um-linux_1.14.3699939.bb +++ b/recipes-graphics/libgles/ti-sgx-ddk-um_1.14.3699939.bb | |||
@@ -10,6 +10,18 @@ BRANCH = "ti-img-sgx/${PV}" | |||
10 | SRC_URI = "git://git.ti.com/graphics/omap5-sgx-ddk-um-linux.git;protocol=git;branch=${BRANCH}" | 10 | SRC_URI = "git://git.ti.com/graphics/omap5-sgx-ddk-um-linux.git;protocol=git;branch=${BRANCH}" |
11 | SRCREV = "626c4f773b7c704f1d9a55ca80f60a79f809186d" | 11 | SRCREV = "626c4f773b7c704f1d9a55ca80f60a79f809186d" |
12 | 12 | ||
13 | # There's only hardfp version available | ||
14 | python __anonymous() { | ||
15 | tunes = bb.data.getVar("TUNE_FEATURES", d, 1) | ||
16 | if not tunes: | ||
17 | return | ||
18 | pkgn = bb.data.getVar("PN", d, 1) | ||
19 | pkgv = bb.data.getVar("PV", d, 1) | ||
20 | if "callconvention-hard" not in tunes: | ||
21 | bb.warn("%s-%s ONLY supports hardfp mode for now" % (pkgn, pkgv)) | ||
22 | raise bb.parse.SkipPackage("%s-%s ONLY supports hardfp mode for now" % (pkgn, pkgv)) | ||
23 | } | ||
24 | |||
13 | TARGET_PRODUCT_omap-a15 = "jacinto6evm" | 25 | TARGET_PRODUCT_omap-a15 = "jacinto6evm" |
14 | TARGET_PRODUCT_ti33x = "ti335x" | 26 | TARGET_PRODUCT_ti33x = "ti335x" |
15 | TARGET_PRODUCT_ti43x = "ti437x" | 27 | TARGET_PRODUCT_ti43x = "ti437x" |
@@ -20,13 +32,21 @@ INITSCRIPT_PARAMS = "defaults 8" | |||
20 | inherit update-rc.d | 32 | inherit update-rc.d |
21 | 33 | ||
22 | PR = "r8" | 34 | PR = "r8" |
23 | PROVIDES += "virtual/egl virtual/libgles1 virtual/libgles2" | 35 | PROVIDES += "virtual/egl virtual/libgles1 virtual/libgles2 omap5-sgx-ddk-um-linux" |
24 | 36 | ||
25 | RDEPENDS_${PN} += "libdrm libudev libgbm wayland libffi libdrm-omap" | 37 | RDEPENDS_${PN} += "libdrm libudev libgbm wayland libffi libdrm-omap" |
26 | 38 | ||
27 | RREPLACES_${PN} = "libegl libgles1 libgles2" | 39 | RPROVIDES_${PN} = "libegl libgles1 libgles2 omap5-sgx-ddk-um-linux" |
28 | RREPLACES_${PN}-dev = "libegl-dev libgles1-dev libgles2-dev" | 40 | RPROVIDES_${PN}-dev = "libegl-dev libgles1-dev libgles2-dev omap5-sgx-ddk-um-linux-dev" |
29 | RREPLACES_${PN}-dbg = "libegl-dbg" | 41 | RPROVIDES_${PN}-dbg = "libegl-dbg libgles1-dbg libgles2-dbg omap5-sgx-ddk-um-linux-dbg" |
42 | |||
43 | RREPLACES_${PN} = "libegl libgles1 libgles2 omap5-sgx-ddk-um-linux" | ||
44 | RREPLACES_${PN}-dev = "libegl-dev libgles1-dev libgles2-dev omap5-sgx-ddk-um-linux-dev" | ||
45 | RREPLACES_${PN}-dbg = "libegl-dbg libgles1-dbg libgles2-dbg omap5-sgx-ddk-um-linux-dbg" | ||
46 | |||
47 | RCONFLICTS_${PN} = "libegl libgles1 libgles2 omap5-sgx-ddk-um-linux" | ||
48 | RCONFLICTS_${PN}-dev = "libegl-dev libgles1-dev libgles2-dev omap5-sgx-ddk-um-linux-dev" | ||
49 | RCONFLICTS_${PN}-dbg = "libegl-dbg libgles1-dbg libgles2-dbg omap5-sgx-ddk-um-linux-dbg" | ||
30 | 50 | ||
31 | S = "${WORKDIR}/git" | 51 | S = "${WORKDIR}/git" |
32 | 52 | ||
@@ -48,6 +68,7 @@ RDEPENDS_${PN} += "${PN}-plugins" | |||
48 | ALLOW_EMPTY_${PN}-plugins = "1" | 68 | ALLOW_EMPTY_${PN}-plugins = "1" |
49 | 69 | ||
50 | INHIBIT_PACKAGE_STRIP = "1" | 70 | INHIBIT_PACKAGE_STRIP = "1" |
71 | INHIBIT_SYSROOT_STRIP = "1" | ||
51 | 72 | ||
52 | INSANE_SKIP_${PN} += "dev-so ldflags useless-rpaths" | 73 | INSANE_SKIP_${PN} += "dev-so ldflags useless-rpaths" |
53 | INSANE_SKIP_${PN}-plugins = "dev-so" | 74 | INSANE_SKIP_${PN}-plugins = "dev-so" |