diff options
| author | Cristian Ciocaltea <[email protected]> | 2019-12-24 18:05:39 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2020-01-07 18:08:21 +0100 |
| commit | ecc7fdaa9ef191e023fbc138e3466ccf05f6af20 (patch) | |
| tree | d690160a6e4759958912671f61b37d7e232dad68 /cmd | |
| parent | a031b03f6448fafba46d08f7a88fa33690d50858 (diff) | |
bootm: Add a bootm command for type IH_OS_EFI
Add support for booting EFI binaries contained in FIT images.
A typical usage scenario is chain-loading GRUB2 in a verified
boot environment.
Signed-off-by: Cristian Ciocaltea <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 4e29e7b3c54..a6bfa87e081 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -259,6 +259,13 @@ config CMD_BOOTM help Boot an application image from the memory. +config BOOTM_EFI + bool "Support booting UEFI FIT images" + depends on CMD_BOOTEFI && CMD_BOOTM && FIT + default y + help + Support booting UEFI FIT images via the bootm command. + config CMD_BOOTZ bool "bootz" help |
