forked from pool/libvirt
2cdc10fadb
- Update to libvirt 6.8.0 - jsc#SLE-12684, jsc#SLE-15861 - bsc#1174955 (CVE-2020-15708) - bsc#1177155 (CVE-2020-25637) - Many incremental improvements and bug fixes, see https://libvirt.org/news.html - Dropped patches: 2ad009ea-qemu-check-modules-dir.patch, 8abd1ffe-qemu-tolerate-non-existent-files.patch, 4a72b76b-qemu-namespace-memleak-fix.patch OBS-URL: https://build.opensuse.org/request/show/839020 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=845
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.8.0/src/libxl/libxl_conf.c
|
|
===================================================================
|
|
--- libvirt-6.8.0.orig/src/libxl/libxl_conf.c
|
|
+++ libvirt-6.8.0/src/libxl/libxl_conf.c
|
|
@@ -1792,6 +1792,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,
|