mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 14:27:48 +00:00
d3a7ce8cf3
* 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>
33 lines
541 B
BlitzBasic
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
|
|
|
|
}
|