summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2026-02-16 09:04:33 -0600
committerTom Rini <trini@konsulko.com>2026-02-16 09:04:33 -0600
commitb3be5b4c2656a3f87b5cd4164d362f1f136845f3 (patch)
tree77e61693e10fb42d0894c9e1f3a2c4bb5c161be6
parented6e970569b45c02a354f443502ed7616e0b0adf (diff)
parent7080475bb7c2e9ed272cb88be83a42e73edfe0f7 (diff)
Merge tag 'ab-next-13022026' of https://source.denx.de/u-boot/custodians/u-boot-tpm into next
CI: https://source.denx.de/u-boot/custodians/u-boot-tpm/-/pipelines/29283 An update on AB subsystem allowing multiple FWU metadata storage drivers to be selected simultaneously instead of being mutually exclusive. The board can then select the appropriate driver at runtime based on the devicetree description.
-rw-r--r--drivers/fwu-mdata/Kconfig12
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/fwu-mdata/Kconfig b/drivers/fwu-mdata/Kconfig
index 42736a5e43b..59571ac01ea 100644
--- a/drivers/fwu-mdata/Kconfig
+++ b/drivers/fwu-mdata/Kconfig
@@ -1,4 +1,4 @@
-config FWU_MDATA
+menuconfig FWU_MDATA
bool "Driver support for accessing FWU Metadata"
depends on DM
help
@@ -6,16 +6,14 @@ config FWU_MDATA
FWU Metadata partitions reside on the same storage device
which contains the other FWU updatable firmware images.
-choice
- prompt "Storage Layout Scheme"
- depends on FWU_MDATA
- default FWU_MDATA_GPT_BLK
+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 FWU_MDATA && BLK && EFI_PARTITION
+ depends on BLK && EFI_PARTITION
+ default y
help
Enable support for accessing FWU Metadata on GPT partitioned
block devices.
@@ -28,4 +26,4 @@ config FWU_MDATA_MTD
(or non-GPT partitioned, e.g. partition nodes in devicetree)
MTD devices.
-endchoice
+endif