* Remove unneeded settings in the do_compile function.
Variables were being set to point to non-existent locations
in the ${D} directory. Since the files requires were already
staged by other packages these variables do not need to be set.
* Bump the PR
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
LICENSE = "BSD"
DEPENDS += "ti-pru-sw-app-loader ti-pru-sw-edma-library"
RDEPENDS += "ti-pru-sw-edma-driver kernel-module-uio-pru"
-PR = "r1+svnr${SRCPV}"
+PR = "r2+svnr${SRCPV}"
COMPATIBLE_MACHINE = "omapl138"
S = "${WORKDIR}/trunk"
do_compile () {
- make -C ${S}/example_apps LIBDIR_APP_LOADER="${D}${libdir}" \
+ make -C ${S}/example_apps \
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"