blob: 032375c18e473a023e810479e9e93cbf4bf19c5f (
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
|
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://gerrit.automotivelinux.org/gerrit/src/virtio/qemu;protocol=https;branch=master"
SRCREV = "af1a266670d040d2f4083ff309d732d648afba2a"
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 = ""
|