diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-12-24 17:59:43 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-26 18:49:07 +0000 |
| commit | 9caff14abbb742e5083056b899ee6fc0a5fba8f3 (patch) | |
| tree | f1011ab47b0a00d76ceb26c4899d62b92b0ccc78 /meta/recipes-devtools/qemu/qemu_7.2.0.bb | |
| parent | d7f7b788f7cef5f8db9df3613a108e13998155e1 (diff) | |
| download | poky-9caff14abbb742e5083056b899ee6fc0a5fba8f3.tar.gz | |
qemu: update 7.1.0 -> 7.2.0
qemu no longer carries libslirp in-tree,
so enabling slirp requires providing external libslirp.
Another noteworthy change is:
x86: TCG support for AVX, AVX2, F16C, FMA3 and VAES instructions
... which means both meta-intel and qemu x86 targets can
now fully utilize Haswell-and-later instruction set with benefits
for performance in emulation and on silicon.
Changelog:
https://wiki.qemu.org/ChangeLog/7.2
(From OE-Core rev: d82e521995832580e990c0c173651aafd43d299c)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu_7.2.0.bb')
| -rw-r--r-- | meta/recipes-devtools/qemu/qemu_7.2.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu_7.2.0.bb b/meta/recipes-devtools/qemu/qemu_7.2.0.bb new file mode 100644 index 0000000000..42e133967e --- /dev/null +++ b/meta/recipes-devtools/qemu/qemu_7.2.0.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | BBCLASSEXTEND = "nativesdk" | ||
| 2 | |||
| 3 | require qemu.inc | ||
| 4 | |||
| 5 | DEPENDS = "glib-2.0 zlib pixman bison-native ninja-native meson-native" | ||
| 6 | |||
| 7 | DEPENDS:append:libc-musl = " libucontext" | ||
| 8 | |||
| 9 | CFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', '-DEGL_NO_X11=1', d)}" | ||
| 10 | |||
| 11 | RDEPENDS:${PN}:class-target += "bash" | ||
| 12 | |||
| 13 | EXTRA_OECONF:append:class-target = " --target-list=${@get_qemu_target_list(d)}" | ||
| 14 | EXTRA_OECONF:append:class-target:mipsarcho32 = "${@bb.utils.contains('BBEXTENDCURR', 'multilib', ' --disable-capstone', '', d)}" | ||
| 15 | EXTRA_OECONF:append:class-nativesdk = " --target-list=${@get_qemu_target_list(d)}" | ||
| 16 | |||
| 17 | PACKAGECONFIG ??= " \ | ||
| 18 | fdt sdl kvm pie slirp \ | ||
| 19 | ${@bb.utils.filter('DISTRO_FEATURES', 'alsa xen', d)} \ | ||
| 20 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer epoxy', '', d)} \ | ||
| 21 | ${@bb.utils.filter('DISTRO_FEATURES', 'seccomp', d)} \ | ||
| 22 | " | ||
| 23 | PACKAGECONFIG:class-nativesdk ??= "fdt sdl kvm pie slirp \ | ||
| 24 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virglrenderer epoxy', '', d)} \ | ||
| 25 | " | ||
| 26 | # ppc32 hosts are no longer supported in qemu | ||
| 27 | COMPATIBLE_HOST:powerpc = "null" | ||
