diff options
Diffstat (limited to 'recipes-multimedia/imx-parser/imx-parser_4.10.0.bb')
| -rw-r--r-- | recipes-multimedia/imx-parser/imx-parser_4.10.0.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/recipes-multimedia/imx-parser/imx-parser_4.10.0.bb b/recipes-multimedia/imx-parser/imx-parser_4.10.0.bb new file mode 100644 index 000000000..60add6e33 --- /dev/null +++ b/recipes-multimedia/imx-parser/imx-parser_4.10.0.bb | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | # Copyright (C) 2012-2018 O.S. Systems Software LTDA. | ||
| 2 | # Copyright (C) 2012-2016 Freescale Semiconductor | ||
| 3 | # Copyright (C) 2017-2023 NXP | ||
| 4 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
| 5 | DESCRIPTION = "Freescale Multimedia parser libs" | ||
| 6 | LICENSE = "Proprietary" | ||
| 7 | SECTION = "multimedia" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=a93b654673e1bc8398ed1f30e0813359" | ||
| 9 | |||
| 10 | # For backwards compatibility | ||
| 11 | PROVIDES += "libfslparser" | ||
| 12 | RREPLACES:${PN} = "libfslparser" | ||
| 13 | RPROVIDES:${PN} = "libfslparser" | ||
| 14 | RCONFLICTS:${PN} = "libfslparser" | ||
| 15 | |||
| 16 | SRC_URI = "${FSL_MIRROR}/${BP}-${IMX_SRCREV_ABBREV}.bin;fsl-eula=true" | ||
| 17 | IMX_SRCREV_ABBREV = "e8a7ec7" | ||
| 18 | S = "${UNPACKDIR}/${BP}-${IMX_SRCREV_ABBREV}" | ||
| 19 | |||
| 20 | SRC_URI[sha256sum] = "90b4b7f7c3cffc9d57774dbb06e37d810a2618e059f30244e1b4155fb9bc82d5" | ||
| 21 | |||
| 22 | inherit fsl-eula-unpack autotools pkgconfig | ||
| 23 | |||
| 24 | # Choose between 32-bit and 64-bit binaries and between Soft Float-Point and Hard Float-Point | ||
| 25 | EXTRA_OECONF = "${@bb.utils.contains('TUNE_FEATURES', 'aarch64', '--enable-armv8', \ | ||
| 26 | bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', '--enable-fhw', '--enable-fsw', d), d)}" | ||
| 27 | |||
| 28 | INHIBIT_PACKAGE_STRIP = "1" | ||
| 29 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | ||
| 30 | |||
| 31 | python __set_insane_skip() { | ||
| 32 | # FIXME: All binaries lack GNU_HASH in elf binary but as we don't have | ||
| 33 | # the source we cannot fix it. Disable the insane check for now. | ||
| 34 | # FIXME: gst-fsl-plugin looks for the .so files so we need to deploy those | ||
| 35 | for p in d.getVar('PACKAGES').split(): | ||
| 36 | d.setVar("INSANE_SKIP:%s" % p, "ldflags dev-so textrel") | ||
| 37 | } | ||
| 38 | |||
| 39 | do_package_qa[prefuncs] += "__set_insane_skip" | ||
| 40 | |||
| 41 | # FIXME: gst-fsl-plugin looks for the .so files so we need to deploy those | ||
| 42 | FILES:${PN} += "${libdir}/imx-mm/*/*${SOLIBS} ${libdir}/imx-mm/*/*${SOLIBSDEV}" | ||
| 43 | |||
| 44 | INHIBIT_SYSROOT_STRIP = "1" | ||
| 45 | |||
| 46 | COMPATIBLE_MACHINE = "(imx-nxp-bsp)" | ||
