x86_firmware_configure requires ovmf support. Add a stub for this function call for cases where OVMF is not supported.
Reported-by: Michael Tokarev <[email protected]> Signed-off-by: Ani Sinha <[email protected]> --- hw/i386/pc_sysfw_ovmf-stubs.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hw/i386/pc_sysfw_ovmf-stubs.c b/hw/i386/pc_sysfw_ovmf-stubs.c index aabe78b271..b53906a052 100644 --- a/hw/i386/pc_sysfw_ovmf-stubs.c +++ b/hw/i386/pc_sysfw_ovmf-stubs.c @@ -24,3 +24,8 @@ void pc_system_parse_ovmf_flash(uint8_t *flash_ptr, size_t flash_size) { g_assert_not_reached(); } + +void x86_firmware_configure(hwaddr gpa, void *ptr, int size) +{ + g_assert_not_reached(); +} -- 2.42.0
