mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 21:32:52 +00:00
5c5d00df67
QEMU build fails with
hw/i386/fw_cfg.c:74: undefined reference to `smbios_get_table_legacy'
when it's built with only 'microvm' enabled i.e. with config patch
+++ b/configs/devices/i386-softmmu/default.mak
@@ -26,7 +26,7 @@
# Boards:
#
-CONFIG_ISAPC=y
-CONFIG_I440FX=y
-CONFIG_Q35=y
+CONFIG_ISAPC=n
+CONFIG_I440FX=n
+CONFIG_Q35=n
It happens because I've fogotten/lost smbios_get_table_legacy() stub.
Fix it by adding missing stub as Philippe suggested.
Fixes:
|
||
---|---|---|
.. | ||
Kconfig | ||
meson.build | ||
smbios-stub.c | ||
smbios.c | ||
smbios_build.h | ||
smbios_legacy.c | ||
smbios_legacy_stub.c | ||
smbios_type_38-stub.c | ||
smbios_type_38.c |