mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-25 14:08:58 +00:00
Signed-off-by: Jacob Stiffler <j-stiffler@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
14 lines
335 B
BlitzBasic
14 lines
335 B
BlitzBasic
require common-csl-ip.inc
|
|
|
|
PR = "r3"
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
|
|
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
|
|
}
|