From e93a7df55e04b3f6b2860d58fed759a8e149d11c Mon Sep 17 00:00:00 2001 From: Nikhil Devshatwar Date: Tue, 15 Jun 2021 16:42:43 +0530 Subject: [PATCH] recipes-bsp: ivshmem: Remove ivshmem packages Jailhouse support is dropped for K3 platforms. So the ivshmem (inter VM shared memory) based UIO driver and test applications cannot be build and are not required. Remove the recipes for the same. Signed-off-by: Nikhil Devshatwar Signed-off-by: Yogesh Siraswar --- .../ivshmem-uio/ivshmem-uio-driver_git.bb | 29 ------------------- .../ivshmem-uio/ivshmem-uio-tests_git.bb | 23 --------------- 2 files changed, 52 deletions(-) delete mode 100644 recipes-bsp/ivshmem-uio/ivshmem-uio-driver_git.bb delete mode 100644 recipes-bsp/ivshmem-uio/ivshmem-uio-tests_git.bb diff --git a/recipes-bsp/ivshmem-uio/ivshmem-uio-driver_git.bb b/recipes-bsp/ivshmem-uio/ivshmem-uio-driver_git.bb deleted file mode 100644 index 39a75533..00000000 --- a/recipes-bsp/ivshmem-uio/ivshmem-uio-driver_git.bb +++ /dev/null @@ -1,29 +0,0 @@ -SUMMARY = "Kernel driver for IVSHMEM based UIO driver" -DESCRIPTION = "Kernel module which registers a UIO (userspace io) device for inter VM shared memory" -HOMEPAGE = "https://github.com/henning-schild-work/ivshmem-guest-code" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://COPYING;md5=0546a27aad86c83b75ad4ee6133e9d5e" - -inherit module - -RDEPENDS_${PN} = "jailhouse" - -PROTOCOL = "git" -BRANCH = "jailhouse" -SRCREV = "f3ad79881bebb6c6068966ee3d265d8034c20492" -SRC_URI = "git://github.com/henning-schild-work/ivshmem-guest-code.git;protocol=${PROTOCOL};branch=${BRANCH}" - -S = "${WORKDIR}/git" - -EXTRA_OEMAKE += 'KDIR="${STAGING_KERNEL_DIR}"' - -COMPATIBLE_MACHINE = "(ti-soc)" - -do_compile_prepend() { - cd ${S}/kernel_module/uio -} - -do_install() { - install -d ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra - install -m 644 ${S}/kernel_module/uio/uio_ivshmem.ko ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra -} diff --git a/recipes-bsp/ivshmem-uio/ivshmem-uio-tests_git.bb b/recipes-bsp/ivshmem-uio/ivshmem-uio-tests_git.bb deleted file mode 100644 index 997b8c48..00000000 --- a/recipes-bsp/ivshmem-uio/ivshmem-uio-tests_git.bb +++ /dev/null @@ -1,23 +0,0 @@ -SUMMARY = "UIO tests for IVSHMEM based UIO driver" -DESCRIPTION = "Test programs which use UIO (userspace io) device for inter VM communication" -HOMEPAGE = "https://github.com/henning-schild-work/ivshmem-guest-code" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://${WORKDIR}/git/COPYING;md5=0546a27aad86c83b75ad4ee6133e9d5e" - -inherit cmake - -PROTOCOL = "git" -BRANCH = "jailhouse" -SRCREV = "f3ad79881bebb6c6068966ee3d265d8034c20492" -SRC_URI = "git://github.com/henning-schild-work/ivshmem-guest-code.git;protocol=${PROTOCOL};branch=${BRANCH}" - -S = "${WORKDIR}/git/uio/tests/Interrupts/VM" - -COMPATIBLE_MACHINE = "(ti-soc)" -OECMAKE_TARGET_COMPILE = "uio_send uio_read" - -do_install() { - install -d ${D}/${bindir} - install -m 755 ${B}/uio_send ${D}/${bindir}/ - install -m 755 ${B}/uio_read ${D}/${bindir}/ -}