[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/7] stubs: Restrict fw_cfg stubs to sysemu
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 1/7] stubs: Restrict fw_cfg stubs to sysemu |
Date: |
Mon, 26 Apr 2021 21:35:14 +0200 |
User emulation or tools don't use / require the fw_cfg device.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
stubs/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stubs/meson.build b/stubs/meson.build
index be6f6d609e5..4ff36401cf9 100644
--- a/stubs/meson.build
+++ b/stubs/meson.build
@@ -12,7 +12,6 @@
stub_ss.add(files('dump.c'))
stub_ss.add(files('error-printf.c'))
stub_ss.add(files('fdset.c'))
-stub_ss.add(files('fw_cfg.c'))
stub_ss.add(files('gdbstub.c'))
stub_ss.add(files('get-vm-name.c'))
stub_ss.add(when: 'CONFIG_LINUX_IO_URING', if_true: files('io_uring.c'))
@@ -49,6 +48,7 @@
stub_ss.add(files('replay-tools.c'))
endif
if have_system
+ stub_ss.add(files('fw_cfg.c'))
stub_ss.add(files('semihost.c'))
stub_ss.add(files('xen-hw-stub.c'))
else
--
2.26.3
- [PATCH 0/7] hw/nvram/fw_cfg: Do not build device if not needed (Spring cleanup), Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 1/7] stubs: Restrict fw_cfg stubs to sysemu,
Philippe Mathieu-Daudé <=
- [PATCH 2/7] hw/nvram: Rename FW_CFG_MIPS as generic FW_CFG Kconfig symbol, Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 3/7] hw/nvram: Declare FW_CFG_DMA Kconfig symbol in hw/nvram/, Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 4/7] hw/acpi/vmgenid: Make ACPI_VMGENID depends on FW_CFG Kconfig, Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 6/7] hw/{arm,hppa,riscv}: Add fw_cfg arch-specific stub, Philippe Mathieu-Daudé, 2021/04/26
- [PATCH 5/7] hw: Have machines Kconfig-select FW_CFG, Philippe Mathieu-Daudé, 2021/04/26