From b32bde478266ae7ae71de52dafff25dc5763b8e8 Mon Sep 17 00:00:00 2001 From: "Franklin S. Cooper Jr" Date: Mon, 11 Feb 2013 19:04:39 -0600 Subject: ti-pru-sw-edma-driver: Port PRU SW edma driver from Arago * Add PRU SW edma driver recipe for the omapl138 machines * This recipe builds and installs an edma driver module that supports the edma user space libraries built by the ti-pru-sw-edma-library recipe. Signed-off-by: Franklin S. Cooper Jr Signed-off-by: Denys Dmytriyenko --- recipes-bsp/pru/ti-pru-sw-edma-driver_1.00.00.bb | 32 ++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 recipes-bsp/pru/ti-pru-sw-edma-driver_1.00.00.bb diff --git a/recipes-bsp/pru/ti-pru-sw-edma-driver_1.00.00.bb b/recipes-bsp/pru/ti-pru-sw-edma-driver_1.00.00.bb new file mode 100644 index 00000000..c7fdfd1e --- /dev/null +++ b/recipes-bsp/pru/ti-pru-sw-edma-driver_1.00.00.bb @@ -0,0 +1,32 @@ +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 = "a+svnr${SRCPV}" +PR = "${MACHINE_KERNEL_PR}" + +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/ +} + +FILES_${PN} = "/lib/modules/${KERNEL_VERSION}/kernel/drivers/pru/edmautils.ko" -- cgit v1.2.3-54-g00ecf