forked from pool/fwupd
Dominique Leuenberger
75ced53afd
- Update to version 1.9.14: * Correctly detect ARM32 and RISC-V UEFI binaries. * Correctly migrate the database schema from very old fwupd versions. * Fix DS-20 descriptors by opening the GUsbDevice earlier. * Fix updating the fingerprint reader on the Framework 13 and 16 laptop. * Fix warning when probing devices using the metadata allowlist. * Only recover the version format for specific devices. OBS-URL: https://build.opensuse.org/request/show/1152012 OBS-URL: https://build.opensuse.org/package/show/Base:System/fwupd?expand=0&rev=169
19 lines
857 B
Diff
19 lines
857 B
Diff
Index: fwupd-1.9.14/plugins/uefi-capsule/fu-uefi-common.c
|
|
===================================================================
|
|
--- fwupd-1.9.14.orig/plugins/uefi-capsule/fu-uefi-common.c
|
|
+++ fwupd-1.9.14/plugins/uefi-capsule/fu-uefi-common.c
|
|
@@ -235,9 +235,13 @@ fu_uefi_get_esp_path_for_os(void)
|
|
g_autofree gchar *esp_path = NULL;
|
|
g_autoptr(GError) error_local = NULL;
|
|
g_autoptr(GHashTable) os_release = fwupd_get_os_release(&error_local);
|
|
+ g_auto(GStrv) split = NULL;
|
|
/* try to lookup /etc/os-release ID key */
|
|
if (os_release != NULL) {
|
|
os_release_id = g_hash_table_lookup(os_release, "ID");
|
|
+ /* Overide os_release_id for SLE and openSUSE */
|
|
+ split = g_strsplit (g_hash_table_lookup (os_release, "NAME"), " ", 2);
|
|
+ os_release_id = g_ascii_strdown (split[0], -1);
|
|
} else {
|
|
g_debug("failed to get ID: %s", error_local->message);
|
|
}
|