mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
* Re-implement common-csl-ip-rtos using the ti-pdk class Signed-off-by: Jacob Stiffler <j-stiffler@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
18 lines
365 B
BlitzBasic
18 lines
365 B
BlitzBasic
require common-csl-ip.inc
|
|
|
|
PR = "${INC_PR}.0"
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
|
|
CLEANBROKEN = "1"
|
|
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
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
|
|
}
|