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

Fetch QorIQ's source code from github.com/nxp-qoriq, as original source.codeaurora.org/external/qoriq will stop to access from April 2023. Signed-off-by: Jun Zhu <junzhu@nxp.com>
32 lines
860 B
BlitzBasic
32 lines
860 B
BlitzBasic
DESCRIPTION = "DPAA2 Accelerated I/O Processing service layer"
|
|
SECTION = "dpaa2"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=faf479bdc4702d8033049f97e153f876"
|
|
|
|
BASEDEPENDS = ""
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRC_URI = "git://github.com/nxp-qoriq/aiopsl;protocol=https;nobranch=1"
|
|
SRCREV = "87d83d8e99770325cc7ad9e10965c9959e7cb828"
|
|
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
|
|
DEMOS_PATH:ls2088a = "LS2088A"
|
|
DEMOS_PATH:ls1088a = "LS1088A"
|
|
|
|
do_install () {
|
|
install -d ${D}/usr/aiop/bin
|
|
install -d ${D}/usr/aiop/
|
|
cp -rf ${S}/demos/images/* ${D}/usr/aiop/bin
|
|
cp -rf ${S}/misc/setup/scripts ${D}/usr/aiop/
|
|
cp -rf ${S}/misc/setup/traffic_files/ ${D}/usr/aiop/
|
|
}
|
|
|
|
FILES:${PN} += "/usr/aiop/*"
|
|
INSANE_SKIP:${PN} += "arch"
|
|
INHIBIT_PACKAGE_STRIP = "1"
|
|
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
|
COMPATIBLE_MACHINE = "(ls2088a|ls1088a)"
|