ti-pru-sw-edma-library: stage needed header
authorchase maupin <chasemaupin03@gmail.com>
Wed, 22 Dec 2010 04:30:05 +0000 (04:30 +0000)
committerDenys Dmytriyenko <denys@ti.com>
Tue, 21 Dec 2010 20:48:01 +0000 (15:48 -0500)
* Stage the edma.h header which is needed by other example
  applications that link with this library.
* Bump the PR

Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
recipes/ti/ti-pru-sw-edma-library_1.00.00.bb

index 128d79d..cb517de 100644 (file)
@@ -1,7 +1,7 @@
 DESCRIPTION = "eDMA library for use by PRU sw example applications"
 HOMEPAGE = "https://gforge.ti.com/gf/project/pru_sw/"
 LICENSE = "BSD"
-PR = "r1+svnr${SRCPV}"
+PR = "r2+svnr${SRCPV}"
 
 DEPENDS += "virtual/kernel ti-pru-sw-edma-driver"
 PACKAGE_ARCH = "${MACHINE_ARCH}"
@@ -18,7 +18,8 @@ do_compile () {
 }
 
 do_install () {
-       install -d ${D}/${libdir}
-       install -m 0755 ${S}/../lib/libedmautils.a ${D}/${libdir}/
+       install -d ${D}${libdir}
+       install -d ${D}${includedir}
+       install -m 0755 ${S}/../lib/libedmautils.a ${D}${libdir}/
+       install -m 0644 ${S}/../include/edma.h ${D}${includedir}/
 }
-