forked from pool/libvirt
95d05af7e8
- libxl: ovmf now provides only one firmware for Xen. The firmware is named ovmf-x86_64-xen-4m.bin in the SUSE ovmf package. Adjust the upstream default firmware path to match the SUSE name. - packaging: To improve maintainability, rename suse-ovmf-paths.patch to suse-qemu-ovmf-paths.patch and suse-xen-ovmf-loaders.patch to suse-xen-ovmf-paths.patch OBS-URL: https://build.opensuse.org/request/show/908023 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=898
21 lines
836 B
Diff
21 lines
836 B
Diff
libxl: Use the SUSE ovmf firmware path for Xen
|
|
|
|
The libxl driver trivially supports firmware autoselection since as of
|
|
June 2021 ovmf only supports one firmware for Xen. This patch adjusts
|
|
the firmware path to match the one provided by the ovmf package.
|
|
|
|
|
|
Index: libvirt-7.5.0/src/libxl/libxl_conf.c
|
|
===================================================================
|
|
--- libvirt-7.5.0.orig/src/libxl/libxl_conf.c
|
|
+++ libvirt-7.5.0/src/libxl/libxl_conf.c
|
|
@@ -1813,7 +1813,7 @@ libxlDriverConfigNew(void)
|
|
cfg->firmwares = g_new0(virFirmware *, 1);
|
|
cfg->nfirmwares = 1;
|
|
cfg->firmwares[0] = g_new0(virFirmware, 1);
|
|
- cfg->firmwares[0]->name = g_strdup(LIBXL_FIRMWARE_DIR "/ovmf.bin");
|
|
+ cfg->firmwares[0]->name = g_strdup(DATADIR "/qemu/ovmf-x86_64-xen-4m.bin");
|
|
#endif
|
|
|
|
/* Always add hvmloader to firmwares */
|