diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-01-23 13:54:37 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-01-26 10:01:48 +0100 |
commit | 8bdde7f6b980aabb2097090eac8e05288b651639 (patch) | |
tree | 7f57bda5b7159e8f90b5717bb8925ca08eaf92a2 /recipes-graphics/libgles/libgles-omap3.inc | |
parent | d3550a4bd4bb26899ee20a27b551a639d67ebd6e (diff) | |
download | meta-ti-8bdde7f6b980aabb2097090eac8e05288b651639.tar.gz |
libgles-omap3: adjust packaging for all windowing systems to remove the magic esrev file
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'recipes-graphics/libgles/libgles-omap3.inc')
-rw-r--r-- | recipes-graphics/libgles/libgles-omap3.inc | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/recipes-graphics/libgles/libgles-omap3.inc b/recipes-graphics/libgles/libgles-omap3.inc index 3ee4124c..722ac13e 100644 --- a/recipes-graphics/libgles/libgles-omap3.inc +++ b/recipes-graphics/libgles/libgles-omap3.inc | |||
@@ -3,7 +3,7 @@ LICENSE = "proprietary-binary" | |||
3 | # 'TSPA.txt' might not be the best file to md5sum | 3 | # 'TSPA.txt' might not be the best file to md5sum |
4 | LIC_FILES_CHKSUM = "file://TSPA.txt;md5=c0d5d9c1e38b41677144c4e24d6ddee1" | 4 | LIC_FILES_CHKSUM = "file://TSPA.txt;md5=c0d5d9c1e38b41677144c4e24d6ddee1" |
5 | 5 | ||
6 | PR = "r21" | 6 | PR = "r22" |
7 | 7 | ||
8 | COMPATIBLE_MACHINE = "(omap3|ti816x|ti33x)" | 8 | COMPATIBLE_MACHINE = "(omap3|ti816x|ti33x)" |
9 | 9 | ||
@@ -340,8 +340,32 @@ INITSCRIPT_PARAMS = "start 30 5 2 . stop 40 0 1 6 ." | |||
340 | 340 | ||
341 | # Append to update-rc.d postinst | 341 | # Append to update-rc.d postinst |
342 | pkg_postinst_${PN}_append() { | 342 | pkg_postinst_${PN}_append() { |
343 | rm -f /etc/powervr-esrev | 343 | rm -f ${sysconfdir}/powervr-esrev |
344 | 344 | ||
345 | ln -sf /usr/lib/libXdmcp.so.6.0.0 /usr/lib/libXdmcp.so.0 | 345 | ln -sf /usr/lib/libXdmcp.so.6.0.0 /usr/lib/libXdmcp.so.0 |
346 | ln -sf /usr/lib/libXau.so.6.0.0 /usr/lib/libXau.so.0 | 346 | ln -sf /usr/lib/libXau.so.6.0.0 /usr/lib/libXau.so.0 |
347 | } | 347 | } |
348 | |||
349 | pkg_postinst_${PN}-blitwsegl() { | ||
350 | rm -f ${sysconfdir}/powervr-esrev | ||
351 | } | ||
352 | |||
353 | pkg_postinst_${PN}-flipwsegl() { | ||
354 | rm -f ${sysconfdir}/powervr-esrev | ||
355 | } | ||
356 | |||
357 | pkg_postinst_${PN}-frontwsegl() { | ||
358 | rm -f ${sysconfdir}/powervr-esrev | ||
359 | } | ||
360 | pkg_postinst_${PN}-linuxfbwsegl() { | ||
361 | rm -f ${sysconfdir}/powervr-esrev | ||
362 | } | ||
363 | |||
364 | pkg_postinst_${PN}-x11wsegl() { | ||
365 | rm -f ${sysconfdir}/powervr-esrev | ||
366 | } | ||
367 | |||
368 | pkg_postinst_${PN}-driwsegl() { | ||
369 | rm -f ${sysconfdir}/powervr-esrev | ||
370 | } | ||
371 | |||