diff options
Diffstat (limited to 'recipes-multimedia/imx-parser/imx-parser.inc')
-rw-r--r-- | recipes-multimedia/imx-parser/imx-parser.inc | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/recipes-multimedia/imx-parser/imx-parser.inc b/recipes-multimedia/imx-parser/imx-parser.inc deleted file mode 100644 index 3a78f6ac..00000000 --- a/recipes-multimedia/imx-parser/imx-parser.inc +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | # Copyright (C) 2012-2014, 2016 O.S. Systems Software LTDA. | ||
2 | # Copyright (C) 2012-2016 Freescale Semiconductor | ||
3 | # Copyright 2017 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=08fd295cce89b0a9c74b9b83ed74f671" | ||
9 | |||
10 | # For backwards compatibility | ||
11 | PROVIDES += "libfslparser" | ||
12 | RREPLACES_${PN} = "libfslparser" | ||
13 | RPROVIDES_${PN} = "libfslparser" | ||
14 | RCONFLICTS_${PN} = "libfslparser" | ||
15 | |||
16 | inherit fsl-eula-unpack autotools pkgconfig | ||
17 | |||
18 | SRC_URI = "${FSL_MIRROR}/${PN}-${PV}.bin;fsl-eula=true" | ||
19 | |||
20 | # Choose between Soft Float-Point and Hard Float-Point | ||
21 | EXTRA_OECONF = "${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', '--enable-fhw', '--enable-fsw', d)}" | ||
22 | |||
23 | INHIBIT_PACKAGE_STRIP = "1" | ||
24 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | ||
25 | |||
26 | python __set_insane_skip() { | ||
27 | # FIXME: All binaries lack GNU_HASH in elf binary but as we don't have | ||
28 | # the source we cannot fix it. Disable the insane check for now. | ||
29 | # FIXME: gst-fsl-plugin looks for the .so files so we need to deploy those | ||
30 | for p in d.getVar('PACKAGES', True).split(): | ||
31 | d.setVar("INSANE_SKIP_%s" % p, "ldflags dev-so textrel") | ||
32 | } | ||
33 | |||
34 | do_package_qa[prefuncs] += "__set_insane_skip" | ||
35 | |||
36 | # FIXME: gst-fsl-plugin looks for the .so files so we need to deploy those | ||
37 | FILES_${PN} += "${libdir}/imx-mm/*/*${SOLIBS} ${libdir}/imx-mm/*/*${SOLIBSDEV}" | ||
38 | |||
39 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
40 | |||
41 | INHIBIT_SYSROOT_STRIP = "1" | ||