summaryrefslogtreecommitdiffstats
path: root/meta-egvirt/recipes-qemu/qemu-vhost-user-devices/qemu-vhost-user-devices.bb
blob: 2e7eeef51982ec86c4563bd0edcb046fa0745549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
BBCLASSEXTEND = ""
SUMMARY = "Fast open source processor emulator"
DESCRIPTION = "Recipe for vhost-user-rng -blk and -input"
HOMEPAGE = "http://qemu.org"
LICENSE = "GPL-2.0-only & LGPL-2.1-only"
LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
                    file://COPYING.LIB;endline=24;md5=8c5efda6cf1e1b03dcfd0e6c0d271c7f"

inherit pkgconfig

DEPENDS = "glib-2.0 zlib pixman bison-native ninja-native"
SRC_URI = "git://git.virtualopensystems.com/virtio-loopback/qemu.git;protocol=https;branch=beta-release \
           file://0001-Add-NULL-array-terminate-entry-for-arg-parsing-optio.patch \
           "
SRCREV = "bf75006d5415b4e485f0bc30b8d7461b3616e9ca"
S = "${WORKDIR}/git"

UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar"

# Per https://lists.nongnu.org/archive/html/qemu-devel/2020-09/msg03873.html
# upstream states qemu doesn't work without optimization
DEBUG_BUILD = "0"

export LIBTOOL="${HOST_SYS}-libtool"

B = "${WORKDIR}/build"

do_configure() {
    unset bindir libdir mandir datadir includedir libexecdir
    # Pass empty --cross-prefix to suspend errors due to build configurations
    # on different architectures. CC/CXX and other build variables are set by Yocto
    # itself correct.
    ${S}/configure --cross-prefix=
}
do_configure[cleandirs] += "${B}"

do_install() {
        mkdir ${D}/usr/bin/ -p
        install -m 0755 ${S}/../build/contrib/vhost-user-input/vhost-user-input ${D}/usr/bin/
        install -m 0755 ${S}/../build/contrib/vhost-user-blk/vhost-user-blk ${D}/usr/bin/
        install -m 0755 ${S}/../build/tools/vhost-user-rng/vhost-user-rng ${D}/usr/bin/
}

FILES:${PN} += "/usr/bin"
RDEPENDS:${PN}:class-target += "bash"

DISABLE_STATIC = ""