From: Lennart Poettering Date: Tue, 11 Feb 2025 06:32:47 +0000 (+0100) Subject: boot: bls type #1 with 'efi' stanza are bls type #1 too X-Git-Tag: v258-rc1~1280^2~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6fbfd8db6c23233088b35abb97ba83b835a473c;p=thirdparty%2Fsystemd.git boot: bls type #1 with 'efi' stanza are bls type #1 too --- diff --git a/src/boot/boot.c b/src/boot/boot.c index 7c91e5d3896..c2fb318eaee 100644 --- a/src/boot/boot.c +++ b/src/boot/boot.c @@ -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,