blob: e19ad6aff8de2e23ae5c8321cebb8facf2178a34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 2020-2022 NXP
DESCRIPTION = "Basler camera binary drivers"
LICENSE = "Proprietary"
LIC_FILES_CHKSUM = "file://COPYING;md5=5a0bf11f745e68024f37b4724a5364fe"
inherit fsl-eula-unpack
SRC_URI = "${FSL_MIRROR}/${BPN}-${PV}.bin;fsl-eula=true"
SRC_URI[md5sum] = "99962b0cbba53ef773b7ac8cb50ce05a"
SRC_URI[sha256sum] = "fd2f71c854134683ac293393255d61b985e75d8dae2e090c99c21dff756017fb"
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)"
|