aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2020-12-07 23:07:09 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2020-12-15 12:52:07 -0500
commit98199a654c5425d37293b63ae329d3256bfbcc00 (patch)
treeb213fca42a7e9eccb9944f1cbe349d5af0d0889b /hw
parentdaf07a6714b111340fe2d0234d1a5287d6ebe0ec (diff)
downloadqemu-98199a654c5425d37293b63ae329d3256bfbcc00.zip
qemu-98199a654c5425d37293b63ae329d3256bfbcc00.tar.gz
qemu-98199a654c5425d37293b63ae329d3256bfbcc00.tar.bz2
hw/core: Restrict 'fw-path-provider.c' to system mode emulation
fw-path-provider.c is only consumed by qdev-fw.c, which itself is in softmmu_ss[], so we can restrict fw-path-provider.c to softmmu too. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20201207220709.4017938-1-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/core/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/meson.build b/hw/core/meson.build
index 4a744f3..032576f 100644
--- a/hw/core/meson.build
+++ b/hw/core/meson.build
@@ -1,7 +1,6 @@
# core qdev-related obj files, also used by *-user and unit tests
hwcore_files = files(
'bus.c',
- 'fw-path-provider.c',
'hotplug.c',
'qdev-properties.c',
'qdev.c',
@@ -25,6 +24,7 @@ common_ss.add(when: 'CONFIG_SPLIT_IRQ', if_true: files('split-irq.c'))
common_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('stream.c'))
softmmu_ss.add(files(
+ 'fw-path-provider.c',
'loader.c',
'machine-hmp-cmds.c',
'machine.c',