From 6a72fa2dda9987dbadf1c656d246097506c061b9 Mon Sep 17 00:00:00 2001 From: Hongmei Gou Date: Fri, 20 Jul 2018 01:11:38 +0000 Subject: [PATCH] pruss-lld-apps: build example applications of pruss-lld * The current example application is Simple Open Real-Time Ethernet (SORTE). It is ported to Linux user space utilizing UIO. Signed-off-by: Hongmei Gou Signed-off-by: Denys Dmytriyenko --- recipes-bsp/pruss-lld/pruss-lld-apps_git.bb | 33 +++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 recipes-bsp/pruss-lld/pruss-lld-apps_git.bb diff --git a/recipes-bsp/pruss-lld/pruss-lld-apps_git.bb b/recipes-bsp/pruss-lld/pruss-lld-apps_git.bb new file mode 100644 index 00000000..5867984b --- /dev/null +++ b/recipes-bsp/pruss-lld/pruss-lld-apps_git.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "TI PRUSS low level driver example applications" + +DEPENDS="common-csl-ip pruss-lld osal ti-pdk-build-rtos pruss-lld-rtos" + +DEPENDS_append_ti33x = " starterware" +DEPENDS_append_ti43x = " starterware" + +include pruss-lld.inc + +PR = "${INC_PR}.0" + +S = "${WORKDIR}/${PRUSS_LLD_GIT_DESTSUFFIX}" + +EXTRA_OEMAKE += "-f makefile_armv7 PDK_INSTALL_PATH=${STAGING_INCDIR} PDK_PKG_PATH=${STAGING_DATADIR}/ti/ti-pdk-tree/packages PRUSS_SRC_DIR=${S}" + + +DEVICE_LIST ?= "${TI_PDK_LIMIT_SOCS}" + +do_compile () { +# Build the apps + for device in ${DEVICE_LIST} + do + oe_runmake apps DEVICE="$device" + done +} + +do_install () { +# Install the app binary + for device in ${DEVICE_LIST} + do + oe_runmake installapp INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device" + done +}