]> Git Repo - J-u-boot.git/blame - drivers/fwu-mdata/Kconfig
Merge tag 'v2024.07-rc5' into next
[J-u-boot.git] / drivers / fwu-mdata / Kconfig
CommitLineData
554b38f7
SG
1config 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
4898679e
MH
9choice
10 prompt "Storage Layout Scheme"
11 depends on FWU_MDATA
12 default FWU_MDATA_GPT_BLK
13
554b38f7
SG
14config 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.
4898679e
MH
22
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
This page took 0.060291 seconds and 4 git commands to generate.