1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-07-16 14:27:48 +00:00
Files
Jacob Stiffler 49874edd26 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-06 22:38:10 +00:00

28 lines
566 B
BlitzBasic

DESCRIPTION = "TI PRUSS low level driver tests"
DEPENDS = "common-csl-ip pruss-lld osal"
include pruss-lld.inc
PR = "${INC_PR}.2"
EXTRA_OEMAKE += "-f makefile_armv7 PDK_INSTALL_PATH=${STAGING_INCDIR} PRUSS_SRC_DIR=${S}"
DEVICE_LIST ?= "${TI_PDK_LIMIT_SOCS}"
do_compile () {
# Build the tests
for device in ${DEVICE_LIST}
do
oe_runmake tests DEVICE="$device"
done
}
do_install () {
# Install the binary
for device in ${DEVICE_LIST}
do
oe_runmake installbin INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
done
}