1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-06-08 20:02:21 +00:00

sa-lld: Update to new version 3.0.0.11

- Add device independent symbolic link for dynamic library
- Add utils to test build

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
Sam Nelson
2015-10-22 10:03:01 +00:00
committed by Denys Dmytriyenko
parent ff68b5f5f4
commit 5ae46649cd
3 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ do_compile () {
make -f makefile_armv7 clean PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" SA_SRC_DIR=${S}
for choice in ${CHOICELIST}
do
make -f makefile_armv7 examples PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" SA_SRC_DIR=${S} USEDYNAMIC_LIB="$choice"
make -f makefile_armv7 examples utils PDK_INSTALL_PATH=${STAGING_INCDIR} DEVICE="$device" SA_SRC_DIR=${S} USEDYNAMIC_LIB="$choice"
done
done
}
+3 -4
View File
@@ -5,10 +5,9 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/sa/COPYING.txt;md5=4709d353574a
BRANCH = "master"
SRC_URI = "git://git.ti.com/keystone-rtos/sa-lld.git;destsuffix=git/ti/drv/sa;protocol=git;branch=${BRANCH}"
# Following commit DEV.SA_LLD.03.00.00.10
SRCREV = "533aec7ef0e28c3faff4ee64a861c8935262dc33"
PV = "03.00.00.10"
PR = "r1"
# Following commit DEV.SA_LLD.03.00.00.11A
SRCREV = "bf5b097e868b20d23d386abc34a1902903d7d9ea"
PV = "03.00.00.11"
BASEDIR = "${WORKDIR}/git"
S = "${BASEDIR}/ti/drv/sa"
+4
View File
@@ -11,4 +11,8 @@ do_compile () {
do_install () {
make -f makefile_armv7 install PDK_INSTALL_PATH=${STAGING_INCDIR} INSTALL_INC_BASE_DIR=${D}/${includedir} INSTALL_LIB_BASE_DIR=${D}${libdir}
# 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
}