mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-05 05:14:44 +02:00

The series [1] changed the way sources are fetched/unpacked and S needs to follow that. Additionally for git repos it moved away from having 'git/' as the checkout directory. This has been partly tested by building weston based image for imx6/imx6ull/imx7/imx8/imx8mm/imx8mp/imx95 based images. E.g. none of the recipes specific for qoriq is built time tested. As walnascar is no longer compatible with master/whinlatter drop it from LAYERSERIES_COMPAT. [1] https://lore.kernel.org/openembedded-core/20250616095000.2918921-1-alex.kanavin@gmail.com/ Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
35 lines
880 B
BlitzBasic
35 lines
880 B
BlitzBasic
# Copyright (C) 2020-2024 NXP
|
|
|
|
DESCRIPTION = "Basler camera binary drivers"
|
|
LICENSE = "Proprietary"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c0fb372b5d7f12181de23ef480f225f3"
|
|
|
|
IMX_SRCREV_ABBREV = "d1f506a"
|
|
|
|
inherit fsl-eula-unpack
|
|
|
|
SRC_URI = "${FSL_MIRROR}/${BPN}-${PV}-${IMX_SRCREV_ABBREV}.bin;fsl-eula=true"
|
|
|
|
SRC_URI[sha256sum] = "49d1b3691d18e2ba5f43a6e2c59ac16767b6e077a118cafec7f51293d6bf30f3"
|
|
|
|
S = "${UNPACKDIR}/${BPN}-${PV}-${IMX_SRCREV_ABBREV}"
|
|
|
|
do_compile[noexec] = "1"
|
|
|
|
do_install() {
|
|
oe_runmake install INSTALL_DIR=${D}
|
|
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)"
|