1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-04-20 19:53:43 +00:00

udma: suppress texrel warning, set correct PV version

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
Denys Dmytriyenko
2019-08-03 03:39:57 +00:00
parent 55ba1a6ce7
commit e101bdfe04

View File

@@ -10,11 +10,13 @@ S = "${WORKDIR}/git"
# Commit corresponds to UDMA.01.00.00.00 # Commit corresponds to UDMA.01.00.00.00
SRCREV = "53d09fb0bc98c41c5eb43623097e363c497d6fd8" SRCREV = "53d09fb0bc98c41c5eb43623097e363c497d6fd8"
PV = "01.00.00.00"
PACKAGES =+ "${PN}-test" PACKAGES =+ "${PN}-test"
FILES_${PN}-test = "${bindir}/udma_test" FILES_${PN}-test = "${bindir}/udma_test"
do_install_append() { do_install() {
install -d ${D}${bindir}/ install -d ${D}${bindir}/
install -d ${D}${libdir}/ install -d ${D}${libdir}/
install -d ${D}${includedir}/ install -d ${D}${includedir}/
@@ -26,3 +28,5 @@ do_install_append() {
ln -sf libudma.so.1.0.0 libudma.so ln -sf libudma.so.1.0.0 libudma.so
install -c -m 755 ${S}/include/* ${D}${includedir}/ install -c -m 755 ${S}/include/* ${D}${includedir}/
} }
INSANE_SKIP_${PN} += "textrel"