summaryrefslogtreecommitdiffstats
path: root/recipes-ti/udma
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@konsulko.com>2022-02-22 04:13:08 +0000
committerRyan Eatmon <reatmon@ti.com>2022-02-22 12:01:31 -0600
commit53f4cdf2ce35cbb0aaac0891e5f06e8909caecdd (patch)
tree2d7a22adf169476666eda7d988767506f40f3d20 /recipes-ti/udma
parentdd558151806beb2ac95356a7a8275498ccddf125 (diff)
downloadmeta-ti-53f4cdf2ce35cbb0aaac0891e5f06e8909caecdd.tar.gz
classes,recipes: remove K1/2 PDK RTOS support, FWs and IPC transports
Remove deprecated support for compiling Keystone1/2 RTOS components and Linux firmwares using PDK, CSL, etc. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'recipes-ti/udma')
-rw-r--r--recipes-ti/udma/udma_git.bb32
1 files changed, 0 insertions, 32 deletions
diff --git a/recipes-ti/udma/udma_git.bb b/recipes-ti/udma/udma_git.bb
deleted file mode 100644
index b6100a37..00000000
--- a/recipes-ti/udma/udma_git.bb
+++ /dev/null
@@ -1,32 +0,0 @@
1DESCRIPTION = "Provides zero copy access from user-space to packet dma channels via udma kernel driver"
2LICENSE = "BSD-3-Clause"
3
4COMPATIBLE_MACHINE = "keystone"
5LIC_FILES_CHKSUM = "file://include/udma.h;startline=1;endline=39;md5=ba3c7f91f970afe073b759ced61d0f27"
6
7BRANCH = "master"
8SRC_URI = "git://git.ti.com/keystone-linux/udma.git;protocol=git;branch=${BRANCH}"
9S = "${WORKDIR}/git"
10# Commit corresponds to UDMA.01.00.00.00
11SRCREV = "53d09fb0bc98c41c5eb43623097e363c497d6fd8"
12
13PV = "01.00.00.00"
14
15PACKAGES =+ "${PN}-test"
16
17FILES:${PN}-test = "${bindir}/udma_test"
18
19do_install() {
20 install -d ${D}${bindir}/
21 install -d ${D}${libdir}/
22 install -d ${D}${includedir}/
23 install -c -m 755 ${S}/udma_test ${D}${bindir}/
24 install -c -m 755 ${S}/libudma.a ${D}${libdir}/
25 install -c -m 755 ${S}/libudma.so ${D}${libdir}/libudma.so.1.0.0
26 cd ${D}${libdir}/
27 ln -sf libudma.so.1.0.0 libudma.so.1
28 ln -sf libudma.so.1.0.0 libudma.so
29 install -c -m 755 ${S}/include/* ${D}${includedir}/
30}
31
32INSANE_SKIP:${PN} += "textrel"