file://fix-strerrorname_np.patch \
file://0001-qemu-Add-addition-environment-space-to-boot-loader-q.patch \
file://0002-apic-fixup-fallthrough-to-PIC.patch \
- file://0003-configure-Add-pkg-config-handling-for-libgcrypt.patch \
file://0004-qemu-Do-not-include-file-if-not-exists.patch \
file://0005-qemu-Add-some-user-space-mmap-tweaks-to-address-musl.patch \
file://0006-qemu-Determinism-fixes.patch \
"
UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar"
-SRC_URI[sha256sum] = "a8c3f596aece96da3b00cafb74baafa0d14515eafb8ed1ee3f7f5c2d0ebf02b6"
+SRC_URI[sha256sum] = "816b7022a8ba7c2ac30e2e0cf973e826f6bcc8505339603212c5ede8e94d7834"
CVE_STATUS[CVE-2007-0998] = "not-applicable-config: The VNC server can expose host files uder some circumstances. We don't enable it by default."
+++ /dev/null
-From e4f6c6b9f43b28271bc9dc6cbcafad53f80387e0 Mon Sep 17 00:00:00 2001
-From: He Zhe <zhe.he@windriver.com>
-Date: Wed, 28 Aug 2019 19:56:28 +0800
-Subject: [PATCH 03/11] configure: Add pkg-config handling for libgcrypt
-
-libgcrypt may also be controlled by pkg-config, this patch adds pkg-config
-handling for libgcrypt.
-
-Upstream-Status: Denied [https://lists.nongnu.org/archive/html/qemu-devel/2019-08/msg06333.html]
-
-Signed-off-by: He Zhe <zhe.he@windriver.com>
----
- meson.build | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/meson.build b/meson.build
-index 91a0aa64c6..e8373d55b8 100644
---- a/meson.build
-+++ b/meson.build
-@@ -1655,7 +1655,7 @@ endif
- if not gnutls_crypto.found()
- if (not get_option('gcrypt').auto() or have_system) and not get_option('nettle').enabled()
- gcrypt = dependency('libgcrypt', version: '>=1.8',
-- method: 'config-tool',
-+ method: 'pkg-config',
- required: get_option('gcrypt'))
- # Debian has removed -lgpg-error from libgcrypt-config
- # as it "spreads unnecessary dependencies" which in
---
-2.44.0
-
tests/unit/meson.build | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-diff --git a/tests/unit/meson.build b/tests/unit/meson.build
-index 228a21d03c..272fb4c6ca 100644
---- a/tests/unit/meson.build
-+++ b/tests/unit/meson.build
-@@ -47,7 +47,7 @@ tests = {
- 'test-keyval': [testqapi],
- 'test-logging': [],
- 'test-uuid': [],
-- 'ptimer-test': ['ptimer-test-stubs.c', meson.project_source_root() / 'hw/core/ptimer.c'],
-+ 'ptimer-test': ['ptimer-test-stubs.c', '../../hw/core/ptimer.c'],
- 'test-qapi-util': [],
- 'test-interval-tree': [],
- 'test-xs-node': [qom],
-@@ -138,7 +138,7 @@ if have_system
+Index: qemu-9.1.0/tests/unit/meson.build
+===================================================================
+--- qemu-9.1.0.orig/tests/unit/meson.build
++++ qemu-9.1.0/tests/unit/meson.build
+@@ -128,17 +128,17 @@ endif
+
+ if have_system
+ tests += {
+- 'ptimer-test': ['ptimer-test-stubs.c', meson.project_source_root() / 'hw/core/ptimer.c'],
++ 'ptimer-test': ['ptimer-test-stubs.c', '../../hw/core/ptimer.c'],
+ 'test-iov': [],
+ 'test-opts-visitor': [testqapi],
+ 'test-xs-node': [qom],
+- 'test-virtio-dmabuf': [meson.project_source_root() / 'hw/display/virtio-dmabuf.c'],
++ 'test-virtio-dmabuf': ['../../hw/display/virtio-dmabuf.c'],
+ 'test-qmp-cmds': [testqapi],
+ 'test-xbzrle': [migration],
'test-util-sockets': ['socket-helpers.c'],
'test-base64': [],
'test-bufferiszero': [],
'test-vmstate': [migration, io],
'test-yank': ['socket-helpers.c', qom, io, chardev]
}
---
-2.44.0
-