diff options
author | Ilias Apalodimas <ilias.apalodimas@linaro.org> | 2021-06-22 17:38:53 +0300 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-07-02 09:37:01 +0200 |
commit | 6e0184b86f689045a0acc268e1899ce7757c65d0 (patch) | |
tree | 690817e3944b543a80a823dc88f8a1d7dda30f72 /include/efi_loader.h | |
parent | b891ff18f8999c89d00e1a963a4bc07afe3ae061 (diff) | |
download | u-boot-6e0184b86f689045a0acc268e1899ce7757c65d0.tar.gz u-boot-6e0184b86f689045a0acc268e1899ce7757c65d0.tar.bz2 u-boot-6e0184b86f689045a0acc268e1899ce7757c65d0.zip |
efi_loader: Always install FMPs
We only install FMPs if a CapsuleUpdate is requested. Since we now have an
ESRT table which relies on FMPs to build the required information, it
makes more sense to unconditionally install them. This will allow userspace
applications (e.g fwupd) to make use of the ERST and provide us with files
we can use to run CapsuleUpdate on-disk
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 0a9c82a257..b81180cfda 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -972,4 +972,5 @@ efi_status_t efi_esrt_register(void); * - error code otherwise. */ efi_status_t efi_esrt_populate(void); +efi_status_t efi_load_capsule_drivers(void); #endif /* _EFI_LOADER_H */ |