mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
- 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>
20 lines
394 B
BlitzBasic
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}
|
|
}
|