aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ti/ti-pru-sw-edma-library_1.00.00.bb
blob: 76d0bdcb6e426d61c2e70f95147fc000fdcd844e (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
DESCRIPTION = "eDMA library for use by PRU sw example applications"
HOMEPAGE = "https://gforge.ti.com/gf/project/pru_sw/"
LICENSE = "BSD"
PR = "r0+svnr${SRCPV}"

RDEPENDS_${PN} += "ti-pru-sw-edma-driver"
DEPENDS += "virtual/kernel"
PACKAGE_ARCH = "${MACHINE_ARCH}"

COMPATIBLE_MACHINE = "omapl138|am180x-evm|am181x-evm"

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

SRCREV = "18"
S = "${WORKDIR}/trunk/peripheral_lib/edma_driver/interface"

do_compile () {
	oe_runmake KERNEL_DIR="${STAGING_KERNEL_DIR}"
}

do_install () {
	install -d ${D}/${libdir}
	install -m 0755 ${S}/../lib/libedmautils.a ${D}/${libdir}/
}