mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-08-22 00:42:07 +02:00

Drop md5sum check as no longer mandated in Yocto Project. SRC_URI[md5sum] used to also be commonly used, but it is deprecated and should be replaced by SRC_URI[sha256sum] when updating existing recipes. See: - https://docs.yoctoproject.org/dev/singleindex.html#fetching-code - https://docs.yoctoproject.org/dev/singleindex.html#src-uri-checksum-behaviour Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
28 lines
704 B
BlitzBasic
28 lines
704 B
BlitzBasic
# Copyright 2020-2023 NXP
|
|
|
|
DESCRIPTION = "Basler camera binary drivers"
|
|
LICENSE = "Proprietary"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=2827219e81f28aba7c6a569f7c437fa7"
|
|
|
|
inherit fsl-eula-unpack
|
|
|
|
SRC_URI = "${FSL_MIRROR}/${BPN}-${PV}.bin;fsl-eula=true"
|
|
|
|
SRC_URI[sha256sum] = "ad3e98ee0c10f2b3e74af8923f44b8d5908e42eedbca12a702e35cee9328d8cf"
|
|
|
|
do_install() {
|
|
dest_dir=${D}/opt/imx8-isp/bin
|
|
install -d ${D}/${libdir}
|
|
install -d $dest_dir
|
|
cp -r ${S}/opt/imx8-isp/bin/* $dest_dir
|
|
cp -r ${S}/usr/lib/* ${D}/${libdir}
|
|
}
|
|
|
|
SYSTEMD_AUTO_ENABLE = "enable"
|
|
|
|
FILES:${PN} = "${libdir} /opt"
|
|
INSANE_SKIP:${PN} = "already-stripped"
|
|
RDEPENDS:${PN} += "isp-imx"
|
|
|
|
COMPATIBLE_MACHINE = "(mx8mp-nxp-bsp)"
|