]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
boot: bls type #1 with 'efi' stanza are bls type #1 too
authorLennart Poettering <lennart@poettering.net>
Tue, 11 Feb 2025 06:32:47 +0000 (07:32 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 21 Feb 2025 09:04:15 +0000 (10:04 +0100)
src/boot/boot.c

index 7c91e5d3896f751dc543c8aa8e1585550ca88e8d..c2fb318eaee5063135affb9d85c918c311ab471a 100644 (file)
@@ -47,8 +47,8 @@ DECLARE_SBAT(SBAT_BOOT_SECTION_TEXT);
 typedef enum LoaderType {
         LOADER_UNDEFINED,
         LOADER_AUTO,
-        LOADER_EFI,
-        LOADER_LINUX,         /* Boot loader spec type #1 entries */
+        LOADER_EFI,           /* Boot loader spec type #1 entries with "efi" line */
+        LOADER_LINUX,         /* Boot loader spec type #1 entries with "linux" line */
         LOADER_UNIFIED_LINUX, /* Boot loader spec type #2 entries */
         LOADER_SECURE_BOOT_KEYS,
         _LOADER_TYPE_MAX,