forked from pool/libvirt
7d820c6247
- Update to libvirt 6.1.0 - Many incremental improvements and bug fixes, see https://libvirt.org/news.html - Dropped patches: 6c1dddaf-libxl-shutdown-inhibit.patch, 849052ec-libxl-support-credit2.patch, 72ed254b-drop-exec-perms-bashcompletion.patch, e092daac-prohib-parallel-tunneled-mig.patch, ae9e6c2a-qemu-allow-cond-format-probe.patch OBS-URL: https://build.opensuse.org/request/show/783126 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=809
28 lines
1.2 KiB
Diff
28 lines
1.2 KiB
Diff
libxl: Temporarily hardcode paths to ovmf firmwares
|
|
|
|
This is a quick, hacky fix for bsc#1159793 until there is time to work on
|
|
upstream support for firmware autoselection in the xen driver. Sadly, the
|
|
upstream efforts to improve firmware handling in the qemu driver broke
|
|
the firmware handling in the xen driver.
|
|
|
|
Index: libvirt-6.1.0/src/libxl/libxl_conf.c
|
|
===================================================================
|
|
--- libvirt-6.1.0.orig/src/libxl/libxl_conf.c
|
|
+++ libvirt-6.1.0/src/libxl/libxl_conf.c
|
|
@@ -1738,6 +1738,15 @@ libxlDriverConfigNew(void)
|
|
cfg->autoDumpDir = g_strdup(LIBXL_DUMP_DIR);
|
|
cfg->channelDir = g_strdup(LIBXL_CHANNEL_DIR);
|
|
|
|
+ /* Begin hack ---
|
|
+ * bsc#1159793: Until there is time to work on proper upstream support for
|
|
+ * firmware autoselection in the xen driver we'll go with this minimal fix.
|
|
+ */
|
|
+#define DEFAULT_LOADER_NVRAM "/usr/share/qemu/ovmf-x86_64-ms-4m.bin:/usr/share/qemu/ovmf-x86_64-ms-4m-vars.bin:/usr/share/qemu/ovmf-x86_64-ms.bin:/usr/share/qemu/ovmf-x86_64-ms-vars.bin"
|
|
+ /*
|
|
+ * --- End hack
|
|
+ */
|
|
+
|
|
#ifdef DEFAULT_LOADER_NVRAM
|
|
if (virFirmwareParseList(DEFAULT_LOADER_NVRAM,
|
|
&cfg->firmwares,
|