diff options
| author | AKASHI Takahiro <[email protected]> | 2022-04-22 10:44:30 +0900 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-04-24 15:17:31 -0400 |
| commit | 64efbd125dd8e1dff7a0f3cc2b3df810794a2aea (patch) | |
| tree | 8bf6a3db770fe6d6aa1cc7c78496ee7a7d12afda | |
| parent | 46a06ed82a81dfcb451fe82381c59c1d0a6667a1 (diff) | |
cmd: part: add explicit dependency on PARTITIONS
This is a follow-up patch for my "disk: don't compile in partition
support for spl/tpl if not really necessary".
"part" command is useful only if, at least, one of partition table types
is selected. So it should have a dependency on PARTITIONS which is now
automatically selected if one of partition table types is enabled.
With this change, *_defconfig which explicitly selects CMD_PART but
has no partition table types enabled should also be fixed.
Signed-off-by: AKASHI Takahiro <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
| -rw-r--r-- | cmd/Kconfig | 1 | ||||
| -rw-r--r-- | configs/cortina_presidio-asic-emmc_defconfig | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index f580797d2d3..65517cb69ee 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1246,6 +1246,7 @@ config CMD_OSD config CMD_PART bool "part" + depends on PARTITIONS select HAVE_BLOCK_DEVICE select PARTITION_UUIDS help diff --git a/configs/cortina_presidio-asic-emmc_defconfig b/configs/cortina_presidio-asic-emmc_defconfig index b0bd54f7cb1..b8a1c96c834 100644 --- a/configs/cortina_presidio-asic-emmc_defconfig +++ b/configs/cortina_presidio-asic-emmc_defconfig @@ -20,7 +20,6 @@ CONFIG_LAST_STAGE_INIT=y CONFIG_SYS_PROMPT="G3#" CONFIG_CMD_I2C=y CONFIG_CMD_MMC=y -CONFIG_CMD_PART=y CONFIG_CMD_WDT=y CONFIG_BOOTP_BOOTFILESIZE=y CONFIG_CMD_CACHE=y |
