aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2021-12-31 12:13:57 +0100
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2022-01-18 10:45:35 +0100
commit33cda58f0064fdeffe0c13bf340c63878e321f19 (patch)
treefbe45e216221c7d5357defbdf4794ab3629ac989 /hw
parente3ae2bbfcac6400c1eff72b5e89d093dd5758f56 (diff)
downloadqemu-33cda58f0064fdeffe0c13bf340c63878e321f19.zip
qemu-33cda58f0064fdeffe0c13bf340c63878e321f19.tar.gz
qemu-33cda58f0064fdeffe0c13bf340c63878e321f19.tar.bz2
hw/nvram: Restrict fw_cfg QOM interface to sysemu and tools
fw_cfg QOM interface is required by system emulation and qemu-storage-daemon. User-mode emulation doesn't need it. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: David Hildenbrand <david@redhat.com> Message-Id: <20220111184309.28637-3-f4bug@amsat.org>
Diffstat (limited to 'hw')
-rw-r--r--hw/nvram/meson.build6
1 files changed, 4 insertions, 2 deletions
diff --git a/hw/nvram/meson.build b/hw/nvram/meson.build
index 202a546..f5ee9f6 100644
--- a/hw/nvram/meson.build
+++ b/hw/nvram/meson.build
@@ -1,5 +1,7 @@
-# QOM interfaces must be available anytime QOM is used.
-qom_ss.add(files('fw_cfg-interface.c'))
+if have_system or have_tools
+ # QOM interfaces must be available anytime QOM is used.
+ qom_ss.add(files('fw_cfg-interface.c'))
+endif
softmmu_ss.add(files('fw_cfg.c'))
softmmu_ss.add(when: 'CONFIG_CHRP_NVRAM', if_true: files('chrp_nvram.c'))