Merge 5017d9bb1c2df013cf296f0c8ad941776012e0bc into b3adfa83ab61682dec6c3834678ca2e9eae43e03

This commit is contained in:
Antheas Kapenekakis 2025-03-21 11:43:24 -04:00 committed by GitHub
commit cae13a2a1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2022,7 +2022,9 @@ install_deployment_kernel (OstreeSysroot *sysroot, int new_bootversion,
g_autoptr (GHashTable) osrelease_values = parse_os_release (contents, "\n");
/* title */
const char *val = g_hash_table_lookup (osrelease_values, "PRETTY_NAME");
const char *val = g_hash_table_lookup (osrelease_values, "BOOTLOADER_NAME");
if (val == NULL)
val = g_hash_table_lookup (osrelease_values, "PRETTY_NAME");
if (val == NULL)
val = g_hash_table_lookup (osrelease_values, "ID");
if (val == NULL)