blob: 0fa01b58b97badf9542c58f8f34c86dc6085e82f [file] [log] [blame]
Patrick Williams8dd68482022-10-04 07:57:18 -05001SUMMARY = "CORSTONE1000 external systems communications tests"
2DESCRIPTION = "This is a Linux userspace tool to test the communication between Corstone1000 cores"
3HOMEPAGE = "https://git.linaro.org/landing-teams/working/arm/test-apps.git"
4LICENSE = "BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://license.md;md5=e44b2531cd6ffe9dece394dbe988d9a0"
6
7SRC_URI = "git://git.gitlab.arm.com/arm-reference-solutions/corstone1000/applications.git;protocol=https;branch=master"
8SRCREV = "2945cd92f7c6dbe4999ee72cd5cf1e2615eedba7"
Andrew Geissler2edf0642023-09-11 08:24:07 -04009PV .= "+git"
Patrick Williams8dd68482022-10-04 07:57:18 -050010
11COMPATIBLE_MACHINE = "corstone1000"
12
13S = "${WORKDIR}/git"
14
15do_compile() {
16 ${CC} ${S}/test-app.c ${CFLAGS} ${LDFLAGS} -o ${S}/systems-comms-tests
17}
18
19do_install() {
20 install -D -p -m 0755 ${S}/systems-comms-tests ${D}${bindir}/systems-comms-tests
21}