mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

bitbake has been enhanced such that SRCPV is no longer needed in PV to handle updating git hashes and task signatures. We can simplify our PV by dropping SRCPV Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
30 lines
979 B
BlitzBasic
30 lines
979 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 = "336751fb10ef24e65cd2f25c450da1d52ff5b33c"
|
|
PV = "5.10.0+git"
|
|
|
|
S = "${WORKDIR}/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}/
|
|
}
|