diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2021-08-10 15:19:23 -0500 |
---|---|---|
committer | Tom Hochstein <tom.hochstein@nxp.com> | 2021-08-18 15:13:36 -0500 |
commit | 188799ec20bb4c2d3ddfc3dd6a99da1b5ce2e835 (patch) | |
tree | 22872c08fa18de535be4cde5dd93ea17b370d132 /recipes-graphics/imx-gpu-viv | |
parent | 84e7c1b873443bb009e6ecdeb15c38eeb8cc9da9 (diff) | |
download | meta-freescale-188799ec20bb4c2d3ddfc3dd6a99da1b5ce2e835.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>
Diffstat (limited to 'recipes-graphics/imx-gpu-viv')
-rw-r--r-- | recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc | 7 |
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 dd174c2b..72186aa3 100644 --- a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc +++ b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc | |||
@@ -101,10 +101,11 @@ python __anonymous () { | |||
101 | USE_X11 = "${@bb.utils.contains("DISTRO_FEATURES", "x11", "yes", "no", d)}" | 101 | USE_X11 = "${@bb.utils.contains("DISTRO_FEATURES", "x11", "yes", "no", d)}" |
102 | USE_WL = "${@bb.utils.contains("DISTRO_FEATURES", "wayland", "yes", "no", d)}" | 102 | USE_WL = "${@bb.utils.contains("DISTRO_FEATURES", "wayland", "yes", "no", d)}" |
103 | 103 | ||
104 | # Inhibit warnings about files being stripped. | 104 | # The packaged binaries have been stripped of debug info, so disable |
105 | INHIBIT_PACKAGE_STRIP = "1" | 105 | # operations accordingly. |
106 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | 106 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" |
107 | INSANE_SKIP:${BPN} += "already-stripped" | 107 | INHIBIT_PACKAGE_STRIP = "1" |
108 | INHIBIT_SYSROOT_STRIP = "1" | ||
108 | 109 | ||
109 | # FIXME: The provided binary doesn't provide soname. If in future BSP | 110 | # FIXME: The provided binary doesn't provide soname. If in future BSP |
110 | # release the libraries are fixed, we can drop this hack. | 111 | # release the libraries are fixed, we can drop this hack. |