qemu: update to 8.2.0

- Refresh patches.
- Disable new features like AF XDP, Rutabaga VGA, libkeyutils
- Delete removed features such as HAX hypervisor

Signed-off-by: Vladimir Ermakov <vooon341@gmail.com>
This commit is contained in:
Vladimir Ermakov 2023-12-23 12:12:33 +01:00 committed by Yousong Zhou
parent 8bcd244715
commit 196955742c
3 changed files with 8 additions and 6 deletions

View File

@ -9,10 +9,10 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=qemu PKG_NAME:=qemu
PKG_VERSION:=8.1.2 PKG_VERSION:=8.2.0
PKG_RELEASE:=1 PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_HASH:=541526a764576eb494d2ff5ec46aeb253e62ea29035d1c23c0a8af4e6cd4f087 PKG_HASH:=bf00d2fa12010df8b0ade93371def58e632cb32a6bfdc5f5a0ff8e6a1fb1bf32
PKG_SOURCE_URL:=http://download.qemu.org/ PKG_SOURCE_URL:=http://download.qemu.org/
PKG_LICENSE:=GPL-2.0-only PKG_LICENSE:=GPL-2.0-only
PKG_LICENSE_FILES:=LICENSE tcg/LICENSE PKG_LICENSE_FILES:=LICENSE tcg/LICENSE
@ -336,7 +336,6 @@ CONFIGURE_ARGS += \
# accel # accel
CONFIGURE_ARGS += \ CONFIGURE_ARGS += \
--disable-hax \
--disable-hvf \ --disable-hvf \
--disable-whpx \ --disable-whpx \
--disable-xen \ --disable-xen \
@ -378,6 +377,7 @@ CONFIGURE_ARGS += \
# #
CONFIGURE_ARGS += \ CONFIGURE_ARGS += \
--audio-drv-list='' \ --audio-drv-list='' \
--disable-af-xdp \
--disable-attr \ --disable-attr \
--disable-auth-pam \ --disable-auth-pam \
--disable-brlapi \ --disable-brlapi \
@ -401,6 +401,7 @@ CONFIGURE_ARGS += \
--disable-libpmem \ --disable-libpmem \
--disable-libssh \ --disable-libssh \
--$(if $(CONFIG_QEMU_DEV_USB),enable,disable)-libusb \ --$(if $(CONFIG_QEMU_DEV_USB),enable,disable)-libusb \
--disable-libkeyutils \
--disable-linux-aio \ --disable-linux-aio \
--disable-linux-io-uring \ --disable-linux-io-uring \
--disable-lzfse \ --disable-lzfse \
@ -417,6 +418,7 @@ CONFIGURE_ARGS += \
--disable-qom-cast-debug \ --disable-qom-cast-debug \
--disable-rbd \ --disable-rbd \
--disable-rdma \ --disable-rdma \
--disable-rutabaga-gfx \
--disable-sanitizers \ --disable-sanitizers \
--$(if $(CONFIG_QEMU_SECCOMP),enable,disable)-seccomp \ --$(if $(CONFIG_QEMU_SECCOMP),enable,disable)-seccomp \
--disable-smartcard \ --disable-smartcard \

View File

@ -11,7 +11,7 @@ OpenWrt base build system decide flavor of fortify_source to use
--- a/configure --- a/configure
+++ b/configure +++ b/configure
@@ -823,6 +823,8 @@ for opt do @@ -757,6 +757,8 @@ for opt do
;; ;;
--gdb=*) gdb_bin="$optarg" --gdb=*) gdb_bin="$optarg"
;; ;;

View File

@ -1,6 +1,6 @@
--- a/meson.build --- a/meson.build
+++ b/meson.build +++ b/meson.build
@@ -3451,10 +3451,6 @@ subdir('common-user') @@ -3513,10 +3513,6 @@ subdir('common-user')
subdir('bsd-user') subdir('bsd-user')
subdir('linux-user') subdir('linux-user')
@ -11,7 +11,7 @@
# accel modules # accel modules
tcg_real_module_ss = ss.source_set() tcg_real_module_ss = ss.source_set()
tcg_real_module_ss.add_all(when: 'CONFIG_TCG_MODULAR', if_true: tcg_module_ss) tcg_real_module_ss.add_all(when: 'CONFIG_TCG_MODULAR', if_true: tcg_module_ss)
@@ -3945,10 +3941,6 @@ subdir('scripts') @@ -4012,10 +4008,6 @@ subdir('scripts')
subdir('tools') subdir('tools')
subdir('pc-bios') subdir('pc-bios')
subdir('docs') subdir('docs')