1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-07-16 22:38:04 +00:00

hyplnk-lld: Update to new version 2.1.0.2

- Add init script to add symbolic link for generic device library
- remove unused CHOICELIST

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-04-11 03:52:27 +00:00
committed by Denys Dmytriyenko
parent ed5282b256
commit f4b61df92a
3 changed files with 66 additions and 7 deletions
+47
View File
@@ -0,0 +1,47 @@
#*
#* Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/
#*
#*
#* Redistribution and use in source and binary forms, with or without
#* modification, are permitted provided that the following conditions
#* are met:
#*
#* Redistributions of source code must retain the above copyright
#* notice, this list of conditions and the following disclaimer.
#*
#* Redistributions in binary form must reproduce the above copyright
#* notice, this list of conditions and the following disclaimer in the
#* documentation and/or other materials provided with the
#* distribution.
#*
#* Neither the name of Texas Instruments Incorporated nor the names of
#* its contributors may be used to endorse or promote products derived
#* from this software without specific prior written permission.
#*
#! /bin/sh
compatible=$(cat /proc/device-tree/compatible)
cd /usr/lib
case "$compatible" in
*k2hk*)
device=k2hk
ln -sf libhyplnk_k2h.so.1.0.0 libhyplnk_device.so.1
;;
*k2l*)
device=k2l
ln -sf libhyplnk_k2l.so.1.0.0 libhyplnk_device.so.1
;;
*k2e*)
device=k2e
ln -sf libhyplnk_k2e.so.1.0.0 libhyplnk_device.so.1
;;
*)
device=unknown
;;
esac
if [ $device != unknown ]; then
ln -sf libhyplnk_device.so.1 libhyplnk_device.so
echo hyplnk library link established for device : $device
fi
+4 -4
View File
@@ -9,11 +9,11 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/git/ti/drv/${LLDNAME}/COPYING.txt;md5=6233
BRANCH="master"
SRC_URI = "git://git.ti.com/keystone-rtos/hyplnk-lld.git;destsuffix=git/ti/drv/${LLDNAME};protocol=git;branch=${BRANCH}"
# Following commit corresponds to tag DEV.HYPLNK_LLD.02.01.00.01
SRCREV = "6910da379501984ecf27f8d23ba6fc6310fe387e"
# Following commit corresponds to tag DEV.HYPLNK_LLD.02.01.00.02
SRCREV = "8451586025a0cf561ed9bc6ab70a2cad88a7e95e"
PV = "2.1.0"
PR = "r0"
PV = "2.1.0.2"
PR = "r1"
DEVICELIST = " k2h \
k2k \
+15 -3
View File
@@ -2,9 +2,13 @@ include hyplnk-lld.inc
DEPENDS = "common-csl-ip"
CHOICELIST = " yes \
no \
"
SRC_URI += "file://init_hyplnk.sh"
inherit update-rc.d
INITSCRIPT_NAME = "init_hyplnk.sh"
INITSCRIPT_PARAMS = "defaults 10"
do_compile () {
make -f makefile_armv7 clean PDK_INSTALL_PATH="${STAGING_INCDIR}" \
HYPLNK_SRC_DIR="${S}"
@@ -19,4 +23,12 @@ do_install () {
make -f makefile_armv7 install PDK_INSTALL_PATH="${STAGING_INCDIR}" \
INSTALL_INC_BASE_DIR="${D}/${includedir}" \
INSTALL_LIB_BASE_DIR="${D}${libdir}" HYPLNK_SRC_DIR="${S}"
# Set the generic device library symbolic link to default k2h
cd ${D}${libdir}
ln -sf libhyplnk_k2h.so.1.0.0 libhyplnk_device.so.1
ln -sf libhyplnk_device.so.1 libhyplnk_device.so
# Copy init scripts
install -d ${D}${sysconfdir}/init.d/
install -c -m 755 ${WORKDIR}/init_hyplnk.sh ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
}