diff options
author | Philippe Mathieu-Daudé | 2021-12-31 11:10:27 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé | 2022-01-18 10:45:35 +0100 |
commit | e0431aafc48ed0bea934148fb7266dbe36ef7685 (patch) | |
tree | 13d18edf41c8552ef6431e1eb858bb7b74297d85 /stubs | |
parent | hw/nvram: Restrict fw_cfg QOM interface to sysemu and tools (diff) | |
download | qemu-e0431aafc48ed0bea934148fb7266dbe36ef7685.tar.gz qemu-e0431aafc48ed0bea934148fb7266dbe36ef7685.tar.xz qemu-e0431aafc48ed0bea934148fb7266dbe36ef7685.zip |
hw/pci: Restrict pci-bus stub to sysemu
Neither tools nor user-mode emulation require the PCI bus stub.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Message-Id: <20220111184309.28637-4-f4bug@amsat.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stubs/meson.build b/stubs/meson.build index 363f6fa785..d359cbe1ad 100644 --- a/stubs/meson.build +++ b/stubs/meson.build @@ -26,7 +26,6 @@ stub_ss.add(files('migr-blocker.c')) stub_ss.add(files('module-opts.c')) stub_ss.add(files('monitor.c')) stub_ss.add(files('monitor-core.c')) -stub_ss.add(files('pci-bus.c')) stub_ss.add(files('qemu-timer-notify-cb.c')) stub_ss.add(files('qmp_memory_device.c')) stub_ss.add(files('qmp-command-available.c')) @@ -51,6 +50,7 @@ if have_block endif if have_system stub_ss.add(files('fw_cfg.c')) + stub_ss.add(files('pci-bus.c')) stub_ss.add(files('semihost.c')) stub_ss.add(files('usb-dev-stub.c')) stub_ss.add(files('xen-hw-stub.c')) |