diff options
author | Nikhil Devshatwar <nikhil.nd@ti.com> | 2020-03-06 21:08:53 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2020-03-06 21:41:59 +0000 |
commit | c5045c8c29752ec333866886cd348ec4057988a1 (patch) | |
tree | b24d120c860eec821579c9962ebd5c15cfd591fa | |
parent | e4d198d75653b99dbfb8536c59e966389bc1e26d (diff) | |
download | meta-ti-c5045c8c29752ec333866886cd348ec4057988a1.tar.gz |
recipes-bsp: ivshmem-uio-tests: New recipe for ivshmem test apps
uio_send and uio_read are the applications used for communication
between different Virtual Machines using the ivshmem protocol.
Signed-off-by: Nikhil Devshatwar <nikhil.nd@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r-- | recipes-bsp/ivshmem-uio/ivshmem-uio-tests_git.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-bsp/ivshmem-uio/ivshmem-uio-tests_git.bb b/recipes-bsp/ivshmem-uio/ivshmem-uio-tests_git.bb new file mode 100644 index 00000000..997b8c48 --- /dev/null +++ b/recipes-bsp/ivshmem-uio/ivshmem-uio-tests_git.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "UIO tests for IVSHMEM based UIO driver" | ||
2 | DESCRIPTION = "Test programs which use UIO (userspace io) device for inter VM communication" | ||
3 | HOMEPAGE = "https://github.com/henning-schild-work/ivshmem-guest-code" | ||
4 | LICENSE = "GPLv2" | ||
5 | LIC_FILES_CHKSUM = "file://${WORKDIR}/git/COPYING;md5=0546a27aad86c83b75ad4ee6133e9d5e" | ||
6 | |||
7 | inherit cmake | ||
8 | |||
9 | PROTOCOL = "git" | ||
10 | BRANCH = "jailhouse" | ||
11 | SRCREV = "f3ad79881bebb6c6068966ee3d265d8034c20492" | ||
12 | SRC_URI = "git://github.com/henning-schild-work/ivshmem-guest-code.git;protocol=${PROTOCOL};branch=${BRANCH}" | ||
13 | |||
14 | S = "${WORKDIR}/git/uio/tests/Interrupts/VM" | ||
15 | |||
16 | COMPATIBLE_MACHINE = "(ti-soc)" | ||
17 | OECMAKE_TARGET_COMPILE = "uio_send uio_read" | ||
18 | |||
19 | do_install() { | ||
20 | install -d ${D}/${bindir} | ||
21 | install -m 755 ${B}/uio_send ${D}/${bindir}/ | ||
22 | install -m 755 ${B}/uio_read ${D}/${bindir}/ | ||
23 | } | ||