From: Simon Glass <simon.glass@canonical.com> CMD_PART_FIND selects PARTITION_TYPE_GUID which depends on EFI_PARTITION, causing an unmet-dependency warning when EFI_PARTITION is not enabled. Since part_find searches by type GUID, which is a GPT concept, change the dependency from PARTITIONS to EFI_PARTITION. This satisfies the PARTITION_TYPE_GUID dependency and makes sense, since EFI_PARTITION already selects PARTITIONS Co-developed-by: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Simon Glass <simon.glass@canonical.com> --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/Kconfig b/cmd/Kconfig index 243fa55677b..09fc13626bd 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1637,7 +1637,7 @@ config CMD_PART config CMD_PART_FIND bool "part_find" - depends on PARTITIONS + depends on EFI_PARTITION default y if SANDBOX || EFI_APP select HAVE_BLOCK_DEVICE select PARTITION_UUIDS -- 2.43.0