1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-04-20 19:53:43 +00:00
Files
meta-ti/recipes-bsp/srio-lld/srio-lld_git.bb
Sam Nelson 81317592f1 srio-lld: Add recipe for srio peripheral low level driver
- Provides user space low level driver for srio peripheral
- Devices supported k2h & k2k

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
2015-02-24 16:05:13 -05:00

20 lines
394 B
BlitzBasic

DESCRIPTION = "TI SRIO peripheral low level driver"
COMPATIBLE_MACHINE = "keystone"
DEPENDS="common-csl-ip rm-lld cppi-lld"
include srio-lld.inc
do_compile () {
# Now build the lld
oe_runmake clean
for device in ${DEVICELIST}
do
oe_runmake lib DEVICE="${device}"
done
}
do_install () {
oe_runmake install INSTALL_INC_BASE_DIR=${D}${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}
}