aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-bsp/pruss-lld/pruss-lld-apps_git.bb
blob: 74ceb819bce0341e96d287d73f2c149eb88a6775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
DESCRIPTION = "TI PRUSS low level driver example applications"

DEPENDS="common-csl-ip pruss-lld osal ti-pdk-build-rtos pruss-lld-rtos"

DEPENDS:append:ti33x = " starterware"
DEPENDS:append:ti43x = " starterware"

include pruss-lld.inc

PR = "${INC_PR}.0"

EXTRA_OEMAKE += "-f makefile_armv7 PDK_INSTALL_PATH=${STAGING_INCDIR} PDK_PKG_PATH=${STAGING_DATADIR}/ti/ti-pdk-tree/packages PRUSS_SRC_DIR=${S}"


DEVICE_LIST ?= "${TI_PDK_LIMIT_SOCS}"

do_compile () {
#   Build the apps
    for device in ${DEVICE_LIST}
    do
        oe_runmake apps DEVICE="$device"
    done
}

do_install () {
#   Install the app binary
    for device in ${DEVICE_LIST}
    do
        oe_runmake installapp INSTALL_BIN_BASE_DIR=${D}${bindir} DEVICE="$device"
    done
}