mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-01-12 01:20:20 +00:00
Extra sub-layers will be created next and relevant content moved across them. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
46 lines
1008 B
BlitzBasic
46 lines
1008 B
BlitzBasic
SUMMARY = "TI Usage & Load Monitor Implementation"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://../debian/copyright;md5=309825aa8f5edfcf2c44912ac094b979"
|
|
|
|
inherit features_check
|
|
|
|
REQUIRED_MACHINE_FEATURES = "dsp"
|
|
|
|
DEPENDS = "ti-cgt6x-native"
|
|
PR = "${INC_PR}.0"
|
|
|
|
S = "${WORKDIR}/git/dsptop/ulm"
|
|
|
|
DEVICE=""
|
|
DEVICE:dra7xx = "DRA7xx"
|
|
|
|
EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX}"
|
|
|
|
do_compile() {
|
|
oe_runmake arm XPORT_ONLY CC="${CC}"
|
|
oe_runmake dsp C6X_C_DIR=${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x/include
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${includedir}
|
|
install -d ${D}${libdir}
|
|
install -d ${D}${datadir}/ti/ulm
|
|
cp -f tiulm.h ${D}${includedir}
|
|
cp -f release/libtiulm.a ${D}${libdir}
|
|
cp -f tiulm.h ${D}${datadir}/ti/ulm
|
|
cp -f release/libtiulm.ae66 ${D}${datadir}/ti/ulm
|
|
}
|
|
|
|
COMPATIBLE_MACHINE = "dra7xx"
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
FILES:${PN}-dev += "\
|
|
${datadir}/ti/ulm \
|
|
"
|
|
|
|
include dsptop.inc
|
|
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
|
|
PARALLEL_MAKE= ""
|