package/qemu: bump to version 7.2.0
Changes log:
https://wiki.qemu.org/ChangeLog/7.2
Add host-slirp dependency to provide the network backend 'user' that
was included in previous Qemu release by a submodule in Qemu sources [1].
This network backend is currently used by several defconfig that would
fail to boot with:
"-net user: network backend 'user' is not compiled into this binary"
board/mender/x86_64/readme.txt
board/pc/readme.txt
board/pc/readme.txt
board/qemu/arm-versatile/readme.txt
board/qemu/arm-vexpress/readme.txt
board/qemu/mips32r2-malta/readme.txt
board/qemu/mips32r2el-malta/readme.txt
board/qemu/mips32r6el-malta/readme.txt
board/qemu/ppc-bamboo/readme.txt
board/qemu/ppc-e500mc/readme.txt
board/qemu/ppc-g3beige/readme.txt
board/qemu/ppc-mac99/readme.txt
board/qemu/ppc-mpc8544ds/readme.txt
board/qemu/ppc64-e5500/readme.txt
board/qemu/s390x/readme.txt
board/qemu/sh4-r2d/readme.txt
board/qemu/sh4eb-r2d/readme.txt
board/qemu/sparc-ss10/readme.txt
board/qemu/sparc64-sun4u/readme.txt
board/qemu/x86/readme.txt
board/qemu/x86_64/readme.txt
Update the slirp configure option following the slirp submodule removal
[2].
Runtime tested in gitlab:
https://gitlab.com/kubu93/buildroot/-/pipelines/725509959
Add a backport from upstream, to fix sh4 stability [3].
[1] https://wiki.qemu.org/ChangeLog/7.2#Removal_of_the_.22slirp.22_submodule_.28affects_.22-netdev_user.22.29
[2] 5890258aee
[3] https://gitlab.com/kubu93/buildroot/-/jobs/3490258272
Signed-off-by: Romain Naour <romain.naour@gmail.com>
[yann.morin.1998@free.fr: backport fix rather than revert faulty commit]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
ad71850aa0
commit
5a21d2f356
@ -0,0 +1,36 @@
|
||||
From bc2331635ce18ff068d2bb1e493bc546e1f786e1 Mon Sep 17 00:00:00 2001
|
||||
From: Guenter Roeck <linux@roeck-us.net>
|
||||
Date: Mon, 12 Dec 2022 09:03:17 -0600
|
||||
Subject: [PATCH] target/sh4: Mask restore of env->flags from tb->flags
|
||||
|
||||
The values in env->flags are a subset of tb->flags.
|
||||
Restore only the bits that belong.
|
||||
|
||||
Cc: qemu-stable@nongnu.org
|
||||
Fixes: ab419fd8a035 ("target/sh4: Fix TB_FLAG_UNALIGN")
|
||||
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
|
||||
Message-ID: <20221212011345.GA2235238@roeck-us.net>
|
||||
[rth: Reduce to only the the superh_cpu_synchronize_from_tb change]
|
||||
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
|
||||
[yann.morin.1998@free.fr: backport from upstream]
|
||||
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
|
||||
---
|
||||
target/sh4/cpu.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/target/sh4/cpu.c b/target/sh4/cpu.c
|
||||
index 951eb6b9c8..f0934b20fa 100644
|
||||
--- a/target/sh4/cpu.c
|
||||
+++ b/target/sh4/cpu.c
|
||||
@@ -47,7 +47,7 @@ static void superh_cpu_synchronize_from_tb(CPUState *cs,
|
||||
SuperHCPU *cpu = SUPERH_CPU(cs);
|
||||
|
||||
cpu->env.pc = tb_pc(tb);
|
||||
- cpu->env.flags = tb->flags;
|
||||
+ cpu->env.flags = tb->flags & TB_FLAG_ENVFLAGS_MASK;
|
||||
}
|
||||
|
||||
static void superh_restore_state_to_opc(CPUState *cs,
|
||||
--
|
||||
2.25.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Locally computed, tarball verified with GPG signature
|
||||
sha256 a0634e536bded57cf38ec8a751adb124b89c776fe0846f21ab6c6728f1cbbbe6 qemu-7.1.0.tar.xz
|
||||
sha256 5b49ce2687744dad494ae90a898c52204a3406e84d072482a1e1be854eeb2157 qemu-7.2.0.tar.xz
|
||||
sha256 6f04ae8364d0079a192b14635f4b1da294ce18724c034c39a6a41d1b09df6100 COPYING
|
||||
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING.LIB
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
QEMU_VERSION = 7.1.0
|
||||
QEMU_VERSION = 7.2.0
|
||||
QEMU_SOURCE = qemu-$(QEMU_VERSION).tar.xz
|
||||
QEMU_SITE = http://download.qemu.org
|
||||
QEMU_LICENSE = GPL-2.0, LGPL-2.1, MIT, BSD-3-Clause, BSD-2-Clause, Others/BSD-1c
|
||||
@ -69,7 +69,7 @@ QEMU_OPTS += --enable-vhost-user
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QEMU_SLIRP),y)
|
||||
QEMU_OPTS += --enable-slirp=system
|
||||
QEMU_OPTS += --enable-slirp
|
||||
QEMU_DEPENDENCIES += slirp
|
||||
else
|
||||
QEMU_OPTS += --disable-slirp
|
||||
@ -258,6 +258,7 @@ HOST_QEMU_DEPENDENCIES = \
|
||||
host-pixman \
|
||||
host-pkgconf \
|
||||
host-python3 \
|
||||
host-slirp \
|
||||
host-zlib
|
||||
|
||||
# BR ARCH qemu
|
||||
@ -402,6 +403,7 @@ define HOST_QEMU_CONFIGURE_CMDS
|
||||
--disable-vnc-jpeg \
|
||||
--disable-png \
|
||||
--disable-vnc-sasl \
|
||||
--enable-slirp \
|
||||
--enable-tools \
|
||||
$(HOST_QEMU_OPTS)
|
||||
endef
|
||||
|
Loading…
Reference in New Issue
Block a user