[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL v2 19/19] stubs: Restrict ui/win32-kbd-hook to system-mode
From: |
Laurent Vivier |
Subject: |
[PULL v2 19/19] stubs: Restrict ui/win32-kbd-hook to system-mode |
Date: |
Sat, 6 Jun 2020 15:16:07 +0200 |
From: Philippe Mathieu-Daudé <philmd@redhat.com>
In Makefile.objs, the ui/ directory is restricted to system-mode:
43 ifeq ($(CONFIG_SOFTMMU),y)
...
65 common-obj-y += ui/
66 common-obj-m += ui/
...
82 endif # CONFIG_SOFTMMU
Restrict the ui/ stub added in commit 2df9f5718df to only build
it for system-mode emulation.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200522172510.25784-14-philmd@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
stubs/Makefile.objs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs
index f54125de317d..c1e43ac68f87 100644
--- a/stubs/Makefile.objs
+++ b/stubs/Makefile.objs
@@ -23,7 +23,7 @@ stub-obj-y += sysbus.o
stub-obj-y += tpm.o
stub-obj-y += trace-control.o
stub-obj-y += vmstate.o
-stub-obj-y += win32-kbd-hook.o
+stub-obj-$(CONFIG_SOFTMMU) += win32-kbd-hook.o
#######################################################################
# code used by both qemu system emulation and qemu-img
--
2.26.2
- [PULL v2 11/19] util/Makefile: Reduce the user-mode object list, (continued)
- [PULL v2 11/19] util/Makefile: Reduce the user-mode object list, Laurent Vivier, 2020/06/06
- [PULL v2 16/19] target/i386: Restrict CpuClass::get_crash_info() to system-mode, Laurent Vivier, 2020/06/06
- [PULL v2 04/19] linux-user/strace.list: fix epoll_create{, 1} -strace output, Laurent Vivier, 2020/06/06
- [PULL v2 06/19] linux-user: implement OFD locks, Laurent Vivier, 2020/06/06
- [PULL v2 18/19] hw/core: Restrict CpuClass::get_crash_info() to system-mode, Laurent Vivier, 2020/06/06
- [PULL v2 10/19] tests/Makefile: Restrict some softmmu-only tests, Laurent Vivier, 2020/06/06
- [PULL v2 17/19] target/s390x: Restrict CpuClass::get_crash_info() to system-mode, Laurent Vivier, 2020/06/06
- [PULL v2 08/19] configure: Avoid building TCG when not needed, Laurent Vivier, 2020/06/06
- [PULL v2 09/19] tests/Makefile: Only display TCG-related tests when TCG is available, Laurent Vivier, 2020/06/06
- [PULL v2 15/19] arch_init: Remove unused 'qapi-commands-misc.h' include, Laurent Vivier, 2020/06/06
- [PULL v2 19/19] stubs: Restrict ui/win32-kbd-hook to system-mode,
Laurent Vivier <=
- [PULL v2 13/19] target/riscv/cpu: Restrict CPU migration to system-mode, Laurent Vivier, 2020/06/06
- [PULL v2 14/19] exec: Assert CPU migration is not used on user-only build, Laurent Vivier, 2020/06/06
- Re: [PULL v2 00/19] Linux user for 5.1 patches, Peter Maydell, 2020/06/08