Hi,

On 26/5/26 21:19, Quan Sun via lists.openembedded.org wrote:
From: Quan Sun <[email protected]>

Upgrade QEMU to version 11.0.0.

Main changes:

- Add python3-qemu-qmp recipe (0.0.6) as a separate package. The QMP
   Python library was removed from the QEMU source tree in 11.0.0 and
   split into its own upstream project. This is needed by
   qemu-system-native for testimage integration.
   Add an entry for this recipe in maintainers.inc.

- QEMU 11.0.0 has officially dropped all support for 32-bit host systems.
   This includes the ability to build the system emulator (softmmu) on
   any 32-bit host architecture. Add COMPATIBLE_HOST for class-target and
   class-nativesdk to restrict builds to 64-bit architectures.
   Note: QEMU 11.0.0 still supports emulating 32-bit guest architectures
   (such as qemu-system-i386 or qemu-system-arm) as long as they are
   running on a 64-bit host.

- qemu-targets.inc: skip linux-user targets when HOST_ARCH is not in the
   set of architectures supported by QEMU 11.0.0's linux-user mode
   (64-bit only: aarch64, loongarch64, mips64, ppc64, riscv64, s390x,
   sparc64, x86_64).

- Add --cpu=${TUNE_ARCH} to EXTRA_OECONF for class-target, and add
   --cpu=${SDK_ARCH} to nativesdk configure options to fix build
   failure. QEMU 11's configure script falls back to 'uname -m' (x86_64)
   when it cannot detect the host CPU.

- Add 0012-meson-fix-close_range-detection-on-older-glibc.patch:
   the meson has_function('close_range') check succeeds at link time on
   hosts with kernel >= 5.9 even when glibc < 2.34 does not declare the
   function, causing implicit declaration errors. Add a prefix include
   so the check only succeeds when the header declares close_range().

- Add 
0013-hw-scsi-vhost-scsi-include-standard-headers-for-vhost-worker-structs.patch:
   on build hosts with kernel headers < 6.0, vhost-scsi.c fails to
   compile due to missing struct vhost_vring_worker/vhost_worker_state.
   Include QEMU's bundled standard-headers before the system header,
   matching the pattern already used in hw/virtio/vhost-backend.c.

- Drop fix-strerrorname_np.patch (fixed upstream).
   Drop 0001-linux-user-elfload.c-Correction-to-HWCAP2-accessor.patch
   (fixed upstream).
   Drop 0001-accel-tcg-Fix-iotlb_to_section-for-different-Address.patch
   (fixed upstream).

AI-Generated: kiro-cli

Signed-off-by: Quan Sun <[email protected]>
---
  meta/conf/distro/include/maintainers.inc      |   1 +
  .../qemu/python3-qemu-qmp_0.0.6.bb            |  28 ++
  ...native_10.2.0.bb => qemu-native_11.0.0.bb} |   1 -
  ...10.2.0.bb => qemu-system-native_11.0.0.bb} |   7 +-
  meta/recipes-devtools/qemu/qemu-targets.inc   |   4 +
  meta/recipes-devtools/qemu/qemu.inc           |  26 +-
  ...tlb_to_section-for-different-Address.patch | 274 ------------------
  ...load.c-Correction-to-HWCAP2-accessor.patch |  42 ---
  ...n-environment-space-to-boot-loader-q.patch |   8 +-
  .../0002-apic-fixup-fallthrough-to-PIC.patch  |   6 +-
  ...mu-Do-not-include-file-if-not-exists.patch |   6 +-
  ...er-space-mmap-tweaks-to-address-musl.patch |  24 +-
  .../qemu/0006-qemu-Determinism-fixes.patch    |   4 +-
  ...d-use-relative-path-to-refer-to-file.patch |   6 +-
  ...and-MAP_SHARED_VALIDATE-on-needed-li.patch |   2 +-
  ...gure-lookup-meson-exutable-from-PATH.patch |  10 +-
  ...and-the-python-venv-aren-t-used-for-.patch |  10 +-
  ...close_range-detection-on-older-glibc.patch |  36 +++
  ...ard-headers-for-vhost-worker-structs.patch |  35 +++
  .../qemu/qemu/fix-strerrorname_np.patch       |  35 ---
  .../qemu/{qemu_10.2.0.bb => qemu_11.0.0.bb}   |   0
  21 files changed, 154 insertions(+), 411 deletions(-)
  create mode 100644 meta/recipes-devtools/qemu/python3-qemu-qmp_0.0.6.bb
  rename meta/recipes-devtools/qemu/{qemu-native_10.2.0.bb => 
qemu-native_11.0.0.bb} (99%)
  rename meta/recipes-devtools/qemu/{qemu-system-native_10.2.0.bb => 
qemu-system-native_11.0.0.bb} (85%)
  delete mode 100644 
meta/recipes-devtools/qemu/qemu/0001-accel-tcg-Fix-iotlb_to_section-for-different-Address.patch
  delete mode 100644 
meta/recipes-devtools/qemu/qemu/0001-linux-user-elfload.c-Correction-to-HWCAP2-accessor.patch
  create mode 100644 
meta/recipes-devtools/qemu/qemu/0012-meson-fix-close_range-detection-on-older-glibc.patch
  create mode 100644 
meta/recipes-devtools/qemu/qemu/0013-hw-scsi-vhost-scsi-include-standard-headers-for-vhost-worker-structs.patch
  delete mode 100644 meta/recipes-devtools/qemu/qemu/fix-strerrorname_np.patch
  rename meta/recipes-devtools/qemu/{qemu_10.2.0.bb => qemu_11.0.0.bb} (100%)


diff --git a/meta/recipes-devtools/qemu/qemu.inc 
b/meta/recipes-devtools/qemu/qemu.inc
index 5f30416a48..f61f43de4b 100644
--- a/meta/recipes-devtools/qemu/qemu.inc
+++ b/meta/recipes-devtools/qemu/qemu.inc
@@ -4,6 +4,7 @@ machine's processor through dynamic binary translation and 
provides a set \
  of different hardware and device models for the machine, enabling it to run \
  a variety of guest operating systems"
  HOMEPAGE = "http://qemu.org";
+BUGTRACKER = "https://gitlab.com/qemu-project/qemu/-/issues";

Now https://gitlab.com/qemu-project/qemu/-/work_items ;)
(there is a temporary redirect anyway).

Patch LGTM otherwise:
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#237674): 
https://lists.openembedded.org/g/openembedded-core/message/237674
Mute This Topic: https://lists.openembedded.org/mt/119486545/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to