diff options
author | Simon Glass | 2022-07-30 15:52:32 -0600 |
---|---|---|
committer | Tom Rini | 2022-08-12 08:17:11 -0400 |
commit | 4c7418f3efbc0e193caa0f5af2b3d750af47854d (patch) | |
tree | aa2327cb3542e93a1f78c580d832ec07e171be8b /boot/Kconfig | |
parent | 98887ab802e4118e7c813e5e052678772fa1b3a8 (diff) |
vbe: Add initial support for VBE
Create a new bootmeth for VBE along with a library to handle finding the
VBE methods.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot/Kconfig')
-rw-r--r-- | boot/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index b8db8cd7961..e0f09e21efd 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -398,6 +398,16 @@ config BOOTMETH_EFILOADER This provides a way to try out standard boot on an existing boot flow. +config BOOTMETH_VBE + bool "Bootdev support for Verified Boot for Embedded" + depends on FIT + default y + select BOOTMETH_GLOBAL + help + Enables support for VBE boot. This is a standard boot method which + supports selection of various firmware components, seleciton of an OS to + boot as well as updating these using fwupd. + config BOOTMETH_SANDBOX def_bool y depends on SANDBOX |