mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-01-12 01:20:20 +00:00
Legacy platforms AM3/4/5/J6 build components for multimedia acceleration and other DSP showcasing using SYS/BIOS, XDC, XDAIS, CodeGen Tools and different DSP libraries. Move all of them to meta-ti-extras. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
32 lines
936 B
BlitzBasic
32 lines
936 B
BlitzBasic
DESCRIPTION = "Builds eDMA module used by eDMA libraries for PRU sw example applications"
|
|
HOMEPAGE = "https://gforge.ti.com/gf/project/pru_sw/"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://edmautils.c;beginline=1;endline=23;md5=312e9cb8a37a044c617c98a9e980ad1b"
|
|
|
|
COMPATIBLE_MACHINE = "omapl138"
|
|
|
|
INHIBIT_PACKAGE_STRIP = "1"
|
|
|
|
MACHINE_KERNEL_PR:append = "b"
|
|
PR = "${MACHINE_KERNEL_PR}"
|
|
PV:append = "+svn${SRCPV}"
|
|
|
|
SRC_URI = "svn://gforge.ti.com/svn/pru_sw/;module=trunk;protocol=https;user=anonymous;pswd=''"
|
|
|
|
SRCREV = "33"
|
|
|
|
S = "${WORKDIR}/trunk/peripheral_lib/edma_driver/module"
|
|
|
|
inherit module
|
|
|
|
EXTRA_OEMAKE += "KERNEL_DIR='${STAGING_KERNEL_DIR}'"
|
|
|
|
do_compile:prepend () {
|
|
export CCTOOL_PREFIX="${TOOLCHAIN_PATH}/bin/${TARGET_PREFIX}"
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/pru
|
|
install -m 0755 ${S}/edmautils.ko ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/pru/
|
|
}
|