From: Lennart Poettering Date: Tue, 2 Jul 2024 08:49:35 +0000 (+0200) Subject: bootctl: show new sd-boot/sd-stub feature flags X-Git-Tag: v257-rc1~489^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66d3605896e1960583d0b2502920f33d14088801;p=thirdparty%2Fsystemd.git bootctl: show new sd-boot/sd-stub feature flags --- diff --git a/src/boot/bootctl-status.c b/src/boot/bootctl-status.c index 113d27410f4..386f03e0dc8 100644 --- a/src/boot/bootctl-status.c +++ b/src/boot/bootctl-status.c @@ -378,6 +378,7 @@ int verb_status(int argc, char *argv[], void *userdata) { { EFI_LOADER_FEATURE_SECUREBOOT_ENROLL, "Enroll SecureBoot keys" }, { EFI_LOADER_FEATURE_RETAIN_SHIM, "Retain SHIM protocols" }, { EFI_LOADER_FEATURE_MENU_DISABLE, "Menu can be disabled" }, + { EFI_LOADER_FEATURE_MULTI_PROFILE_UKI, "Multi-Profile UKIs are supported" }, }; static const struct { uint64_t flag; @@ -392,6 +393,7 @@ int verb_status(int argc, char *argv[], void *userdata) { { EFI_STUB_FEATURE_CMDLINE_ADDONS, "Pick up .cmdline from addons" }, { EFI_STUB_FEATURE_CMDLINE_SMBIOS, "Pick up .cmdline from SMBIOS Type 11" }, { EFI_STUB_FEATURE_DEVICETREE_ADDONS, "Pick up .dtb from addons" }, + { EFI_STUB_FEATURE_MULTI_PROFILE_UKI, "Stub understands profile selector" }, }; _cleanup_free_ char *fw_type = NULL, *fw_info = NULL, *loader = NULL, *loader_path = NULL, *stub = NULL; sd_id128_t loader_part_uuid = SD_ID128_NULL;