1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-06-08 15:30:08 +00:00

arm-bsp/corstone700-test-app: adding test recipe for systems comms

This commit provides a recipe that generates a Linux userspace
application used for testing the communication between Corstone700 cores.

Change-Id: I7c00653b0fcd6d9074510bbb70a838762aed0150
Signed-off-by: Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Abdellatif El Khlifi
2020-10-21 18:10:33 +01:00
committed by Jon Mason
parent 785f8bf4c1
commit 92c0971055
@@ -0,0 +1,21 @@
SUMMARY = "CORSTONE700 systems communications tests"
DESCRIPTION = "This is a Linux userspace tool to test the communication between Corstone700 cores"
HOMEPAGE = "https://git.linaro.org/landing-teams/working/arm/test-apps.git"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://license.md;md5=e44b2531cd6ffe9dece394dbe988d9a0"
SRC_URI = "git://git.linaro.org/landing-teams/working/arm/test-apps.git;protocol=https"
SRCREV = "ecd93a275d11cf08f670a97783110bd698250963"
PV .= "~git${SRCPV}"
COMPATIBLE_MACHINE = "(corstone700)"
S = "${WORKDIR}/git"
do_compile() {
${CC} ${S}/test-app.c ${CFLAGS} ${LDFLAGS} -o ${S}/test-app
}
do_install() {
install -D -p -m 0755 ${S}/test-app ${D}${bindir}/test-app
}