summaryrefslogtreecommitdiff
path: root/drivers/fwu-mdata/Kconfig
blob: 59571ac01eaace0cd5b1ff30191f63ef2fa1bfd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
menuconfig 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.

if FWU_MDATA

config FWU_MDATA_GPT_BLK
	bool "FWU Metadata access for GPT partitioned Block devices"
	select PARTITION_TYPE_GUID
	select PARTITION_UUIDS
	depends on BLK && EFI_PARTITION
	default y
	help
	  Enable support for accessing FWU Metadata on GPT partitioned
	  block devices.

config FWU_MDATA_MTD
	bool "Raw MTD devices"
	depends on MTD
	help
	  Enable support for accessing FWU Metadata on non-partitioned
	  (or non-GPT partitioned, e.g. partition nodes in devicetree)
	  MTD devices.

endif