mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
227d3b3e0a
Symbol CONFIG_EFI_SETUP_EARLY does not exist anymore. CONFIG_FWU_MULTI_BANK_UPDATE without CONFIG_FWU_MDATA results in lib/fwu_updates/fwu.c:49: undefined reference to `fwu_get_mdata' Fixes:8679405241
("FWU: Add support for the FWU Multi Bank Update feature") Fixes:023d9c9393
("efi_loader: remove CONFIG_EFI_SETUP_EARLY") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Acked-by: Sughosh Ganu <sughosh.ganu@linaro.org>
33 lines
1 KiB
Text
33 lines
1 KiB
Text
config FWU_MULTI_BANK_UPDATE
|
|
bool "Enable FWU Multi Bank Update Feature"
|
|
depends on EFI_CAPSULE_ON_DISK
|
|
select PARTITION_TYPE_GUID
|
|
select FWU_MDATA
|
|
imply EFI_CAPSULE_ON_DISK_EARLY
|
|
select EVENT
|
|
help
|
|
Feature for updating firmware images on platforms having
|
|
multiple banks(copies) of the firmware images. One of the
|
|
bank is selected for updating all the firmware components
|
|
|
|
config FWU_NUM_BANKS
|
|
int "Number of Banks defined by the platform"
|
|
depends on FWU_MULTI_BANK_UPDATE
|
|
help
|
|
Define the number of banks of firmware images on a platform
|
|
|
|
config FWU_NUM_IMAGES_PER_BANK
|
|
int "Number of firmware images per bank"
|
|
depends on FWU_MULTI_BANK_UPDATE
|
|
help
|
|
Define the number of firmware images per bank. This value
|
|
should be the same for all the banks.
|
|
|
|
config FWU_TRIAL_STATE_CNT
|
|
int "Number of times system boots in Trial State"
|
|
depends on FWU_MULTI_BANK_UPDATE
|
|
default 3
|
|
help
|
|
With FWU Multi Bank Update feature enabled, number of times
|
|
the platform is allowed to boot in Trial State after an
|
|
update.
|