mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-30 00:19:08 +00:00
29 lines
792 B
BlitzBasic
29 lines
792 B
BlitzBasic
DESCRIPTION = "TI QMSS low level driver unit test and example binaries"
|
|
|
|
DEPENDS = "common-csl-ip rm-lld cppi-lld qmss-lld cmem uio-module-drv"
|
|
|
|
include qmss-lld.inc
|
|
|
|
PR = "${INC_PR}.2"
|
|
|
|
CHOICELIST = "yes no"
|
|
|
|
do_compile () {
|
|
# Now build the lld in the updated directory
|
|
for device in ${DEVICELIST}
|
|
do
|
|
make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" QMSS_SRC_DIR=${S}
|
|
for choice in ${CHOICELIST}
|
|
do
|
|
make -f makefile_armv7 tests examples PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" QMSS_SRC_DIR=${S} USEDYNAMIC_LIB="$choice"
|
|
done
|
|
done
|
|
}
|
|
|
|
do_install () {
|
|
for device in ${DEVICELIST}
|
|
do
|
|
make -f makefile_armv7 installbin PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" QMSS_SRC_DIR=${S} INSTALL_BIN_BASE_DIR=${D}${bindir}
|
|
done
|
|
}
|