1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-06-01 08:20:47 +00:00
Files
meta-ti/recipes-bsp/pruss-lld/pruss-lld-apps_git.bb
Jacob Stiffler ba4056bd5e pruss-lld: migrate to ti-pdk-fetch.bbclass
Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
2019-12-09 18:15:23 +00:00

32 lines
748 B
BlitzBasic

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"
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
}