1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-07-16 14:27:48 +00:00
Files
meta-ti/recipes-ti/ipc/ipc-transport-srio-test_git.bb
Jacob Stiffler d3a7ce8cf3 ipc-transport: Extract source info to common inc file
* Also use new variables to specify the source info so this can be
  easily overridden and applied to each recipe.

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
2016-02-08 12:30:09 -05:00

33 lines
541 B
BlitzBasic

include ipc-transport-srio.inc
PR = "${INC_PR}.0"
DEPENDS = "ipc-transport-srio ipc-transport-qmss ti-ipc"
DEVICELIST = "k2h k2k"
CHOICELIST = "yes no"
do_compile () {
# Now build the test code
for device in ${DEVICELIST}
do
for choice in ${CHOICELIST}
do
oe_runmake tests \
IPC_DEVKIT_INSTALL_PATH=${STAGING_INCDIR} \
USEDYNAMIC_LIB="$choice" DEVICE="$device"
done
done
}
do_install () {
for device in ${DEVICELIST}
do
oe_runmake installbin \
INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
done
}