diff options
| author | Simon Glass <[email protected]> | 2022-07-30 15:52:21 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-08-12 08:17:10 -0400 |
| commit | bc06aa035d8f78a713a3d339d45f3d05ef0f0d67 (patch) | |
| tree | 4869d2b427ae2bd73839b0d254f593fa3a51f744 /lib | |
| parent | a18686cda14cf0281a00fe1cd44c2647d351d4aa (diff) | |
bootstd: Allow bootmeths to be marked as global
The current way of handling things like EFI bootmgr is a bit odd, since
that bootmeth handles selection of the bootdev itself. VBE needs to work
the same way, so we should support it properly.
Add a flag that indicates that the bootmeth is global, rather than being
invoked on each bootdev. Provide a helper to read a bootflow from the
bootmeth.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_loader/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index e3f2402d0e8..5cfff8c56bc 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -37,6 +37,7 @@ if EFI_LOADER config CMD_BOOTEFI_BOOTMGR bool "UEFI Boot Manager" default y + select BOOTMETH_GLOBAL if BOOTSTD help Select this option if you want to select the UEFI binary to be booted via UEFI variables Boot####, BootOrder, and BootNext. This enables the |
