blob: 42736a5e43b04c716459f1fa45046dce786eafca [file] [log] [blame]
Sughosh Ganu554b38f2022-10-21 18:15:56 +05301config FWU_MDATA
2 bool "Driver support for accessing FWU Metadata"
3 depends on DM
4 help
5 Enable support for accessing FWU Metadata partitions. The
6 FWU Metadata partitions reside on the same storage device
7 which contains the other FWU updatable firmware images.
8
Masami Hiramatsu48986792023-05-31 00:29:14 -05009choice
10 prompt "Storage Layout Scheme"
11 depends on FWU_MDATA
12 default FWU_MDATA_GPT_BLK
13
Sughosh Ganu554b38f2022-10-21 18:15:56 +053014config FWU_MDATA_GPT_BLK
15 bool "FWU Metadata access for GPT partitioned Block devices"
16 select PARTITION_TYPE_GUID
17 select PARTITION_UUIDS
18 depends on FWU_MDATA && BLK && EFI_PARTITION
19 help
20 Enable support for accessing FWU Metadata on GPT partitioned
21 block devices.
Masami Hiramatsu48986792023-05-31 00:29:14 -050022
23config FWU_MDATA_MTD
24 bool "Raw MTD devices"
25 depends on MTD
26 help
27 Enable support for accessing FWU Metadata on non-partitioned
28 (or non-GPT partitioned, e.g. partition nodes in devicetree)
29 MTD devices.
30
31endchoice