aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ti/ti-pru-sw-examples_1.00.00.bb
blob: a9239f8724f87ee6c890b055d56306d20d9ff6b1 (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 = "PRU sw example applications"
HOMEPAGE = "https://gforge.ti.com/gf/project/pru_sw/"
LICENSE = "BSD"
DEPENDS = "ti-pru-sw-app-loader ti-pru-sw-edma-library"
PR = "r0+svnr${SRCPV}"

COMPATIBLE_MACHINE = "omapl138|am180x-evm"

SRC_URI = "svn://gforge.ti.com/svn/pru_sw/;module=trunk;proto=https;user=anonymous;pswd=''"

SRCREV = "18"
S = "${WORKDIR}/trunk"

do_compile () {
        make -C ${S}/example_apps LIBDIR_APP_LOADER="${D}${libdir}" \
          CC=${TOOLCHAIN_PATH}/bin/${TARGET_PREFIX}gcc \
          LIBDIR_EDMA_LOADER="${D}${libdir}}" \
          INCDIR_APP_LOADER="${D}${includedir}" \
          INCDIR_EDMA_DRIVER="${D}${includedir}" \
          BINDIR_APPLICATIONS="${S}/example_apps/bin" \
          BINDIR_FW="${S}/example_apps/bin" \
          UTILS_DIR="${S}/utils"
}

do_install () {
        install -d ${D}/usr/share/ti/ti-pru-eg/
        install -m 0755 ${S}/example_apps/bin/* ${D}/usr/share/ti/ti-pru-eg/
}

FILES_${PN} += "${datadir}/ti/ti-pru-eg/*"
FILES_${PN}-dbg += "${datadir}/ti/ti-pru-eg/.debug/*"