diff options
author | Lennart Poettering <lennart@poettering.net> | 2024-07-02 10:49:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2024-09-11 06:47:16 +0200 |
commit | 66d3605896e1960583d0b2502920f33d14088801 (patch) | |
tree | ef56be9f33d1e6dfba9868283baf58a32456c621 /src | |
parent | src/sysext: Use versioned names when logging extensions used for merge operation (diff) | |
download | systemd-66d3605896e1960583d0b2502920f33d14088801.tar.xz systemd-66d3605896e1960583d0b2502920f33d14088801.zip |
bootctl: show new sd-boot/sd-stub feature flags
Diffstat (limited to 'src')
-rw-r--r-- | src/boot/bootctl-status.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/boot/bootctl-status.c b/src/boot/bootctl-status.c index 113d27410f..386f03e0dc 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; |