summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/srio-lld/srio-lld-test_git.bb
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@konsulko.com>2022-02-22 04:13:07 +0000
committerRyan Eatmon <reatmon@ti.com>2022-02-22 12:01:30 -0600
commitdd558151806beb2ac95356a7a8275498ccddf125 (patch)
treeaebcb3192f0e813db6048c82fb965ee607af5147 /recipes-bsp/srio-lld/srio-lld-test_git.bb
parentedf5e8ca6cc0728abbc47834bcd74837621c28ec (diff)
downloadmeta-ti-dd558151806beb2ac95356a7a8275498ccddf125.tar.gz
recipes-bsp: remove Keystone1/2 LLDs
Low Level Drivers (LLDs) were used by Keystone1/2 to access peripherals by RTOS and Linux. Remove due to deprecation. Signed-off-by: Denys Dmytriyenko <denys@konsulko.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'recipes-bsp/srio-lld/srio-lld-test_git.bb')
-rw-r--r--recipes-bsp/srio-lld/srio-lld-test_git.bb30
1 files changed, 0 insertions, 30 deletions
diff --git a/recipes-bsp/srio-lld/srio-lld-test_git.bb b/recipes-bsp/srio-lld/srio-lld-test_git.bb
deleted file mode 100644
index ca22b7d5..00000000
--- a/recipes-bsp/srio-lld/srio-lld-test_git.bb
+++ /dev/null
@@ -1,30 +0,0 @@
1DESCRIPTION = "TI SRIO peripheral low level driver unit test and example binaries"
2DEPENDS="common-csl-ip rm-lld cppi-lld qmss-lld srio-lld cmem uio-module-drv"
3
4include srio-lld.inc
5
6PR = "${INC_PR}.0"
7
8CHOICELIST = "yes no"
9
10CFLAGS += "-fcommon"
11
12do_compile () {
13# Now build the lld in the updated directory
14 for device in ${DEVICELIST}
15 do
16 oe_runmake clean DEVICE="$device" SRIO_SRC_DIR=${S}
17 for choice in ${CHOICELIST}
18 do
19 oe_runmake tests DEVICE="$device" SRIO_SRC_DIR=${S} USEDYNAMIC_LIB="$choice"
20 oe_runmake examples DEVICE="$device" SRIO_SRC_DIR=${S} USEDYNAMIC_LIB="$choice"
21 done
22 done
23}
24
25do_install () {
26 for device in ${DEVICELIST}
27 do
28 oe_runmake installbin DEVICE="$device" SRIO_SRC_DIR=${S} INSTALL_BIN_BASE_DIR=${D}${bindir}
29 done
30}