Resolves: RHEL-100553,RHEL-103354,RHEL-104555,RHEL-106260,RHEL-44419,RHEL-72701,RHEL-79976,RHEL-97625,RHEL-97762
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From b4f9fb5e51c13eb3e7abd75cfb9343fe23dafad6 Mon Sep 17 00:00:00 2001
|
|
From: Lennart Poettering <lennart@poettering.net>
|
|
Date: Mon, 7 Jul 2025 15:54:17 +0200
|
|
Subject: [PATCH] bootspec: include 'UKI' in descriptive name for type #2
|
|
|
|
I am pretty sure that "UKI" is the best known name for type #2 boot
|
|
loader spec entries, hence we really should put it in the name.
|
|
|
|
(cherry picked from commit a1c7aa6a95956f6827b250a9fec9d584077e2a37)
|
|
|
|
Resolves: RHEL-103354
|
|
---
|
|
src/shared/bootspec.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/shared/bootspec.c b/src/shared/bootspec.c
|
|
index f19699ddda..0d52764f60 100644
|
|
--- a/src/shared/bootspec.c
|
|
+++ b/src/shared/bootspec.c
|
|
@@ -28,7 +28,7 @@
|
|
|
|
static const char* const boot_entry_type_description_table[_BOOT_ENTRY_TYPE_MAX] = {
|
|
[BOOT_ENTRY_CONF] = "Boot Loader Specification Type #1 (.conf)",
|
|
- [BOOT_ENTRY_UNIFIED] = "Boot Loader Specification Type #2 (.efi)",
|
|
+ [BOOT_ENTRY_UNIFIED] = "Boot Loader Specification Type #2 (UKI, .efi)",
|
|
[BOOT_ENTRY_LOADER] = "Reported by Boot Loader",
|
|
[BOOT_ENTRY_LOADER_AUTO] = "Automatic",
|
|
};
|