1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-04-21 20:19:08 +00:00
Files
meta-ti/recipes-bsp/sa-lld/sa-lld_git.bb
Jacob Stiffler a24de25388 sa-lld: utilize oe_runmake
* This fixes a configure issue when the sources may get cleaned.

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
2018-09-10 18:52:37 +00:00

25 lines
606 B
BlitzBasic

DESCRIPTION = "TI Security Accelerator LLD (SA LLD) Library"
DEPENDS = "common-csl-ip"
include sa-lld.inc
PR = "${INC_PR}.1"
PARALLEL_MAKE = ""
EXTRA_OEMAKE = "-f makefile_armv7 PDK_INSTALL_PATH=${STAGING_INCDIR}"
do_compile () {
# Now build the lld in the updated directory
oe_runmake clean lib
}
do_install () {
oe_runmake install INSTALL_INC_BASE_DIR=${D}/${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}
chown -R root:root ${D}
# Set the generic device library symbolic link
ln -sf libsa.so.1.0.0 ${D}${libdir}/libsa_device.so.1
ln -sf libsa_device.so.1 ${D}${libdir}/libsa_device.so
}