- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
37 lines
1.0 KiB
BlitzBasic
37 lines
1.0 KiB
BlitzBasic
# Copyright 2019-2022 NXP
|
|
|
|
DESCRIPTION = "i.MX VC8000E Encoder library"
|
|
LICENSE = "Proprietary"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=ca53281cc0caa7e320d4945a896fb837"
|
|
|
|
inherit fsl-eula-unpack
|
|
|
|
SRC_URI = "${FSL_MIRROR}/${BP}-${IMX_SRCREV_ABBREV}.bin;fsl-eula=true"
|
|
IMX_SRCREV_ABBREV = "c0244a1"
|
|
|
|
SRC_URI[sha256sum] = "713ba375f25490727fcc62bab5d5508f74de03204b4c153464b696b652c5c7df"
|
|
|
|
S = "${WORKDIR}/${BP}-${IMX_SRCREV_ABBREV}"
|
|
|
|
# SCR is the location and name of the Software Content Register file
|
|
# relative to ${D}${D_SUBDIR}.
|
|
SCR = "SCR.txt"
|
|
|
|
do_install () {
|
|
install -d ${D}${D_SUBDIR}
|
|
cp -r ${S}/* ${D}${D_SUBDIR}
|
|
if [ -d "${D}/usr/lib" ] && [ "${D}/usr/lib" != "${D}${libdir}" ]; then
|
|
mv ${D}/usr/lib ${D}${libdir}
|
|
fi
|
|
rm ${D}${D_SUBDIR}/COPYING
|
|
if [ ! -f ${D}${D_SUBDIR}/${SCR} ]; then
|
|
bbfatal "Missing Software Content Register \"${D}${D_SUBDIR}/${SCR}\""
|
|
fi
|
|
rm ${D}${D_SUBDIR}/${SCR}
|
|
}
|
|
|
|
FILES:${PN} = "/"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_SOCARCH}"
|
|
COMPATIBLE_MACHINE = "(mx8mp-nxp-bsp)"
|