mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
efi_loader: add firmware management protocol for raw image
In this commit, a very simple firmware management protocol driver is implemented. It will take a binary image in a capsule file and apply the data using dfu backend storage drivers via dfu_write_by_alt() interface. So "dfu_alt_info" variable should be properly set to specify a device and location to be updated. Please read README.dfu. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
This commit is contained in:
parent
f27c201485
commit
bb7e71d33c
6 changed files with 213 additions and 72 deletions
|
@ -817,6 +817,7 @@ void efi_memcpy_runtime(void *dest, const void *src, size_t n);
|
|||
u16 *efi_create_indexed_name(u16 *buffer, const char *name, unsigned int index);
|
||||
|
||||
extern const struct efi_firmware_management_protocol efi_fmp_fit;
|
||||
extern const struct efi_firmware_management_protocol efi_fmp_raw;
|
||||
|
||||
/* Capsule update */
|
||||
efi_status_t EFIAPI efi_update_capsule(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue