1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-05-07 11:59:49 +00:00

meta-ti: correct and do not skip "installed-vs-shipped" QA check

Skipping "installed-vs-shipped" QA check is now considered bad practice
due to possible SDK issues and is being flagged by yocto-check-layer [1]
script and could affect "Yocto Project Compatible" status for the layer.

[1] https://git.openembedded.org/openembedded-core/commit/?id=e8baa75535fc888f1d768b23a0140475e832c910

Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
This commit is contained in:
Denys Dmytriyenko
2022-02-25 21:41:25 +00:00
committed by Ryan Eatmon
parent e98a97691d
commit f1b6ff1503
3 changed files with 5 additions and 4 deletions
@@ -22,9 +22,12 @@ do_compile () {
do_install() {
cd ${S}
oe_runmake DESTDIR=${D} libdir=${libdir} includedir=${includedir} install
rm -rf ${D}${libdir}/boot.*
rm -rf ${D}${libdir}/gnu.targets.*
rm -rf ${D}${libdir}/syscalls.*
}
COMPATIBLE_HOST ?= "null"
COMPATIBLE_HOST:ti-soc = "(.*)"
INSANE_SKIP:${PN} += "textrel installed-vs-shipped"
INSANE_SKIP:${PN} += "textrel"