From b05512b81bbe1c90b71da9c571e742f162fc0575 Mon Sep 17 00:00:00 2001 From: Michele Paolino Date: Tue, 14 Nov 2023 18:07:09 +0100 Subject: CAN, GPIO, RNG vhost-devices for virtio-loopback [v6] This patch adds key components of the viritio-loopback architecture: - kernel-module-virtio-loopback: the virtio loopback kernel driver - CAN, GPIO and RNG vhost-user devices from meta-virtualization (commit a215d8320edee0a317a6511e7e2efa5bba867486) Notes: - libgpiod, comes from meta-openembedded commit 3029554ceb0b0bb52a8d8ec3f0a75c5113662fe6 - cleaned eg-virt from unused drivers (kernel-module-virtio-video) Bug-AGL: SPEC-4834 V2 changes: - related meta-virtualization commit message added in the cover letter - updated libgpio recipe to v2.1 - SPEC reference added in cover letter v3 - add vhost-device-can preliminary version. This is placed here with the objective to share the link when proposing the new device to the rust-vmm/vhost-device community - remove cargo-update-recipe-crates includes in bb file because it is not supported by the rust mixin layer - vhost-device folder README changes v4 - fixed libgpiod required version - tested ref hw and qemu x86/64 builds - vsock, scsi and i2c rust devices removed from the build as they are not yet integrated in virtiod-loopback - cleaned-up kernel modules kernel-module-virtio-video and gstreamer1.0-plugins-bad - virtio-loopback-driver set to 2-or-later v5 - Merge with Jan-Simon version v4: - remove broken kernel-module-virtio-video - use FEATURE_PACKAGES instead of IMAGE_INSTALL:append - rename virtio-loopback-driver.bb to kernel-module-virtio-loopback_git.bb for consistency v6 - adding version in the title - removing MODULE_GIT_REPOSITORY in kernel-modules Change-Id: Id6cc58e777b9edad03b6c50d0dddaac8601edeaf Signed-off-by: Michele Paolino Signed-off-by: Jan-Simon Moeller --- .../kernel-module-virtio-video/files/Kbuild | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 meta-egvirt/recipes-kernel/kernel-module-virtio-video/files/Kbuild (limited to 'meta-egvirt/recipes-kernel/kernel-module-virtio-video/files/Kbuild') diff --git a/meta-egvirt/recipes-kernel/kernel-module-virtio-video/files/Kbuild b/meta-egvirt/recipes-kernel/kernel-module-virtio-video/files/Kbuild deleted file mode 100644 index f16a686b..00000000 --- a/meta-egvirt/recipes-kernel/kernel-module-virtio-video/files/Kbuild +++ /dev/null @@ -1,22 +0,0 @@ -# -# Kbuild for the virtio-video driver -# - -# --tags to take into account non-annotated tags -# --dirty to mark version with uncommitted changes as dirty -GIT_VERSION = $(shell git -C "$(MODULE_GIT_REPOSITORY_DIR)" describe --tags --dirty | sed 's/^v//') - -ccflags-y := -I"$(src)/include/uapi" -ccflags-y += -DDRIVER_VERSION=\"$(GIT_VERSION)\" - -virtio_video-y := \ - virtio_video_driver.o \ - virtio_video_vq.o \ - virtio_video_device.o \ - virtio_video_dec.o \ - virtio_video_enc.o \ - virtio_video_cam.o \ - virtio_video_caps.o \ - virtio_video_helpers.o - -obj-m += virtio_video.o -- cgit 1.2.3-korg