[meta-ti] Sam Nelson : udma: Add recipe for user space library for udma kernel driver
Arago Project git
git at arago-project.org
Mon Feb 2 12:38:56 PST 2015
Module: meta-ti
Branch: daisy
Commit: 9c1b22c6ba6416dfa05f8a2650e5685fa595e96e
URL: http://arago-project.org/git/meta-ti.git?a=commit;h=9c1b22c6ba6416dfa05f8a2650e5685fa595e96e
Author: Sam Nelson <sam.nelson at ti.com>
Date: Fri Jan 30 08:59:26 2015 +0000
udma: Add recipe for user space library for udma kernel driver
- Provides zero copy access from user-space to packet dma channels
via udma kernel driver
Signed-off-by: Sam Nelson <sam.nelson at ti.com>
Signed-off-by: Denys Dmytriyenko <denys at ti.com>
---
recipes-ti/udma/udma_git.bb | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/recipes-ti/udma/udma_git.bb b/recipes-ti/udma/udma_git.bb
new file mode 100644
index 0000000..0374d37
--- /dev/null
+++ b/recipes-ti/udma/udma_git.bb
@@ -0,0 +1,28 @@
+DESCRIPTION = "Provides zero copy access from user-space to packet dma channels via udma kernel driver"
+LICENSE = "BSD-3-Clause"
+
+COMPATIBLE_MACHINE = "keystone"
+LIC_FILES_CHKSUM = "file://include/udma.h;startline=1;endline=39;md5=ba3c7f91f970afe073b759ced61d0f27"
+
+BRANCH = "master"
+SRC_URI = "git://git.ti.com/keystone-linux/udma.git;protocol=git;branch=${BRANCH}"
+S = "${WORKDIR}/git"
+# Commit corresponds to UDMA.01.00.00.00
+SRCREV = "53d09fb0bc98c41c5eb43623097e363c497d6fd8"
+
+PACKAGES =+ "${PN}-test"
+
+FILES_${PN}-test = "${bindir}/udma_test"
+
+do_install_append() {
+ install -d ${D}${bindir}/
+ install -d ${D}${libdir}/
+ install -d ${D}${includedir}/
+ install -c -m 755 ${S}/udma_test ${D}${bindir}/
+ install -c -m 755 ${S}/libudma.a ${D}${libdir}/
+ install -c -m 755 ${S}/libudma.so ${D}${libdir}/libudma.so.1.0.0
+ cd ${D}${libdir}/
+ ln -sf libudma.so.1.0.0 libudma.so.1
+ ln -sf libudma.so.1.0.0 libudma.so
+ install -c -m 755 ${S}/include/* ${D}${includedir}/
+}
More information about the meta-ti
mailing list