From 61af0f4d976a04fe8a334a99d2fd9c81a4ae28cf Mon Sep 17 00:00:00 2001 From: houhaole_yewu Date: Wed, 13 Aug 2025 14:39:16 +0800 Subject: [PATCH 1/2] docs/about/emulation: Fix broken link semihosting link to risc-v changed Signed-off-by: Santiago Monserrat Campanello Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2717 Reviewed-by: Alistair Francis Reviewed-by: Thomas Huth Message-ID: <20250305102632.91376-1-santimonserr@gmail.com> Signed-off-by: Alistair Francis (cherry picked from commit 672cb29) Signed-off-by: Michael Tokarev Signed-off-by: houhaole_yewu --- docs/about/emulation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/emulation.rst b/docs/about/emulation.rst index a2eefe3f3f..cfe9379ef2 100644 --- a/docs/about/emulation.rst +++ b/docs/about/emulation.rst @@ -185,7 +185,7 @@ for that architecture. - https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;a=blob;f=libgloss/nios2/nios2-semi.txt;hb=HEAD * - RISC-V - System and User-mode - - https://github.com/riscv/riscv-semihosting-spec/blob/main/riscv-semihosting-spec.adoc + - https://github.com/riscv-non-isa/riscv-semihosting/blob/main/riscv-semihosting.adoc * - Xtensa - System - Tensilica ISS SIMCALL -- Gitee From 33cd1fa9235fcf0f773e4c9db2f323d773d6af08 Mon Sep 17 00:00:00 2001 From: houhaole_yewu Date: Wed, 13 Aug 2025 07:51:45 +0000 Subject: [PATCH 2/2] update include/hw/xen/arch_hvm.h. hw/xen/hvm: Fix Aarch64 typo There is no TARGET_ARM_64 definition. Luckily enough, when TARGET_AARCH64 is defined, TARGET_ARM also is. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: 733766c ("hw/arm: introduce xenpvh machine") Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Pierrick Bouvier Reviewed-by: Richard Henderson Message-Id: <20250305153929.43687-2-philmd@linaro.org> (cherry picked from commit 3a11b65) Signed-off-by: Michael Tokarev Signed-off-by: houhaole_yewu --- include/hw/xen/arch_hvm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hw/xen/arch_hvm.h b/include/hw/xen/arch_hvm.h index c7c515220d..df39c819c8 100644 --- a/include/hw/xen/arch_hvm.h +++ b/include/hw/xen/arch_hvm.h @@ -1,5 +1,5 @@ #if defined(TARGET_I386) || defined(TARGET_X86_64) #include "hw/i386/xen_arch_hvm.h" -#elif defined(TARGET_ARM) || defined(TARGET_ARM_64) +#elif defined(TARGET_ARM) || defined(TARGET_AARCH64) #include "hw/arm/xen_arch_hvm.h" #endif -- Gitee