mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-12-14 22:25:28 +01:00
Bumping kvmtool to latest, which comprises the following commits:
7ad32e5 net/uip: Avoid deadlock in uip_tcp_socket_free()
c4e9b3a virtio/pci: explicit zero unknown devices features
ba6830e vfio: include libgen.h (for musl compatibility)
1117dbc riscv: Allow including extensions in the min CPU type using command-line
a50e8d8 riscv: Add cpu-type command-line option
d47ad01 riscv: Include single-letter extensions in isa_info_arr[]
b6e9f38 riscv: Fix no params with nodefault segfault
1132ace riscv: Make system suspend time configurable
fcc3160 riscv: Add SBI system suspend support
0641ed8 riscv: Add Ziccrse extension support
8be1c78 riscv: Add Zabha extension support
a988086 riscv: Add Svvptc extension support
2ab7f9f Sync kernel UAPI headers with v6.14
ad9b731 util: Fix update_headers.sh after removal of 32-bit Arm code
d410d9a arm64: Get rid of the 'arm-common' include directory
0a10c48 arm64: Rename top-level directory
4cd7b87 arm64: Move asm headers
f8a539a arm64: Move remaining kvm/* headers
7113578 arm64: Combine kvm-config-arch.h
65878da arm64: Merge kvm-cpu.c
14e8c42 arm64: Combine kvm.c
5188575 arm64: Move arm64-only features into main directory
329fe56 Drop support for 32-bit arm
e48563f riscv: Add Ssnpm extension support
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
28 lines
959 B
BlitzBasic
28 lines
959 B
BlitzBasic
SUMMARY = "Native Linux KVM tool"
|
|
DESCRIPTION = "kvmtool is a lightweight tool for hosting KVM guests."
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
|
|
|
|
DEPENDS = "dtc libaio zlib"
|
|
do_configure[depends] += "virtual/kernel:do_shared_workdir"
|
|
|
|
inherit kernel-arch
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git;branch=master \
|
|
file://external-crosscompiler.patch \
|
|
file://0001-kvmtool-9p-fixed-compilation-error.patch \
|
|
file://0002-kvmtool-add-EXTRA_CFLAGS-variable.patch \
|
|
file://0003-kvmtool-Werror-disabled.patch \
|
|
"
|
|
|
|
SRCREV = "7ad32e5514aca2b6d19398fd3ae5a7c5e0e1ce24"
|
|
PV = "5.10.0+git"
|
|
|
|
EXTRA_OEMAKE = 'V=1 EXTRA_CFLAGS="-I${STAGING_KERNEL_BUILDDIR}/include/generated -I${STAGING_KERNEL_BUILDDIR}/arch/${ARCH}/include/generated"'
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${S}/lkvm ${D}${bindir}/
|
|
}
|