mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
554b38f7a5
In the FWU Multi Bank Update feature, the information about the updatable images is stored as part of the metadata, on a separate partition. Add a driver for reading from and writing to the metadata when the updatable images and the metadata are stored on a block device which is formatted with GPT based partition scheme. Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org> Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
16 lines
543 B
Text
16 lines
543 B
Text
config FWU_MDATA
|
|
bool "Driver support for accessing FWU Metadata"
|
|
depends on DM
|
|
help
|
|
Enable support for accessing FWU Metadata partitions. The
|
|
FWU Metadata partitions reside on the same storage device
|
|
which contains the other FWU updatable firmware images.
|
|
|
|
config FWU_MDATA_GPT_BLK
|
|
bool "FWU Metadata access for GPT partitioned Block devices"
|
|
select PARTITION_TYPE_GUID
|
|
select PARTITION_UUIDS
|
|
depends on FWU_MDATA && BLK && EFI_PARTITION
|
|
help
|
|
Enable support for accessing FWU Metadata on GPT partitioned
|
|
block devices.
|