1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-05-07 11:59:49 +00:00
Files
Ryan Eatmon 5d91191e80 meta-ti-test: Import the recipes-kernel recipes
We are moving the meta-arago-test layer to meta-ti-test.  This commit
imports all of the recipes under recipes-kernel.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
2026-04-29 10:41:53 -05:00

19 lines
556 B
BlitzBasic

SUMMARY = "Linux Kernel PCI test"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
BRANCH = "ti-linux-5.10.y"
SRCREV = "73aa709ca10103b61fba3a07471dbb4dcb56db45"
SRC_URI = "git://git.ti.com/git/ti-linux-kernel/ti-linux-kernel.git;protocol=https;branch=${BRANCH}"
do_compile () {
cd ${S}/tools/pci
${CC} ${CFLAGS} ${LDFLAGS} -o pcitest pcitest.c
}
do_install () {
install -d ${D}${bindir}
install -m 0755 ${S}/tools/pci/pcitest ${D}${bindir}
install -m 0755 ${S}/tools/pci/pcitest.sh ${D}${bindir}
}