mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 14:28:05 +00:00
ff1129b597
Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
21 lines
717 B
BlitzBasic
21 lines
717 B
BlitzBasic
DESCRIPTION = "Chip support library low level interface"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5857833e20836213677fac33f9aded21"
|
|
|
|
COMPATIBLE_MACHINE = "keystone"
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
|
|
PR = "r3"
|
|
BRANCH="master"
|
|
SRC_URI = "git://git.ti.com/keystone-rtos/common-csl-ip.git;protocol=git;branch=${BRANCH}"
|
|
# commit ID corresponds to DEV.CSL_KEYSTONE2.02.01.00.07A
|
|
SRCREV = "c78867df9165fdf8042fb692fcea776fc0102326"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install () {
|
|
install -d ${D}${includedir}/ti/csl
|
|
find . -name "*.h" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl
|
|
find ./src/ip/serdes_sb/V0 -name "*.c" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl
|
|
}
|