-bugfix: fix qmp command migrate-set-parameters -some bugfixs about ARM hot-plugged CPUs -hw/core/machine:Fix the missing consideration of cluster-id -test/tcg:Fix target-specific Makefile variable path for user-mode -tests:add (riscv virt) machine mapping to testenv -Make a litte improvement in curl and hw/riscv -qemu support for loongarch -hw/pvrdma: Protect against buggy or malious guest driver -hw/audio/intel-hda:fix stream reset -dsoundaudio:fix crackling audio recordings -add notify-vm-exit support for i386 -blok-backend: prevent dangling BDS pointers across aio_poll() -net:Fix uninitialized data usage -net/eth:Don't consider ESP to be an IPv6 option header -hw/net/vmxnet3:Log guest-triggerable errors using LOG_GUEST_ERROR Signed-off-by: FeiXu <xufei30@huawei.com>
41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
From 83f5dc3719af39ab442cb7fe40a4dd752a82e53a Mon Sep 17 00:00:00 2001
|
|
From: tangbinzy <tangbin_yewu@cmss.chinamobile.com>
|
|
Date: Fri, 17 Mar 2023 02:22:44 +0000
|
|
Subject: [PATCH] tests/tcg: Fix target-specific Makefile variables path for
|
|
user-mode mainline inclusion commit 533b0a1a41df3d9edeb44d6dc957f04d20ca143f
|
|
category: bugfix
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
---------------------------------------------------------------
|
|
|
|
Commit 812b31d3f91 refactor missed to update this path.
|
|
|
|
Fixes: 812b31d3f91 ("configs: rename default-configs to configs and reorganise")
|
|
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
Message-Id: <20211226001541.3807919-1-f4bug@amsat.org>
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
Signed-off-by: tangbinzy <tangbin_yewu@cmss.chinamobile.com>
|
|
---
|
|
tests/tcg/Makefile.target | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/tcg/Makefile.target b/tests/tcg/Makefile.target
|
|
index 63cf1b2573..2d6ec70156 100644
|
|
--- a/tests/tcg/Makefile.target
|
|
+++ b/tests/tcg/Makefile.target
|
|
@@ -33,7 +33,7 @@ all:
|
|
-include ../../../config-host.mak
|
|
-include ../config-$(TARGET).mak
|
|
ifeq ($(CONFIG_USER_ONLY),y)
|
|
--include $(SRC_PATH)/default-configs/targets/$(TARGET).mak
|
|
+-include $(SRC_PATH)/configs/targets/$(TARGET)/default.mak
|
|
endif
|
|
|
|
# for including , in command strings
|
|
--
|
|
2.27.0
|
|
|