summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2021-08-10 15:19:23 -0500
committerDaiane Angolini <daiane.angolini@foundries.io>2021-09-11 13:35:14 -0300
commitd0d250f9c60372553e1b68c355f14d1b294ef849 (patch)
tree69cf4dd8a6802dfff14686d137f4737259d1c647
parent412e6d2742ff83f9fb55d7e2a18178c217515043 (diff)
downloadmeta-freescale-d0d250f9c60372553e1b68c355f14d1b294ef849.tar.gz
imx-gpu-viv: Inhibit sysroot stripping
The binaries are already stripped, so inhibit sysroot stripping. Fixes multiple warning messages like: WARNING: imx-gpu-viv-1_6.4.3.p2.0-aarch64-r0 do_populate_sysroot: File '/usr/lib/libGLES_CL.so.1.1.0' from imx-gpu-viv was already stripped, this will prevent future debugging! Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
-rw-r--r--recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc
index 495d6ed1..d58ce4e8 100644
--- a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc
+++ b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc
@@ -99,10 +99,11 @@ python __anonymous () {
99USE_X11 = "${@bb.utils.contains("DISTRO_FEATURES", "x11", "yes", "no", d)}" 99USE_X11 = "${@bb.utils.contains("DISTRO_FEATURES", "x11", "yes", "no", d)}"
100USE_WL = "${@bb.utils.contains("DISTRO_FEATURES", "wayland", "yes", "no", d)}" 100USE_WL = "${@bb.utils.contains("DISTRO_FEATURES", "wayland", "yes", "no", d)}"
101 101
102# Inhibit warnings about files being stripped. 102# The packaged binaries have been stripped of debug info, so disable
103INHIBIT_PACKAGE_STRIP = "1" 103# operations accordingly.
104INHIBIT_PACKAGE_DEBUG_SPLIT = "1" 104INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
105INSANE_SKIP_${BPN} += "already-stripped" 105INHIBIT_PACKAGE_STRIP = "1"
106INHIBIT_SYSROOT_STRIP = "1"
106 107
107# FIXME: The provided binary doesn't provide soname. If in future BSP 108# FIXME: The provided binary doesn't provide soname. If in future BSP
108# release the libraries are fixed, we can drop this hack. 109# release the libraries are fixed, we can drop this hack.