summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2021-03-27 11:43:54 +0100
committerTom Rini <trini@konsulko.com>2021-04-20 07:31:12 -0400
commitec611871f3eb366f7efd557167ec2284e5f5069b (patch)
tree31debb1cff435f972fdc553f643726e75486d812 /cmd
parent935e0b0ecd2d2303fca12aa0c55d2af1783e61dc (diff)
downloadu-boot-ec611871f3eb366f7efd557167ec2284e5f5069b.tar.gz
u-boot-ec611871f3eb366f7efd557167ec2284e5f5069b.tar.xz
u-boot-ec611871f3eb366f7efd557167ec2284e5f5069b.zip
cmd: CONFIG_CMD_MMC depends on CONFIG_MMC
Trying to compile with CONFIG_CMD_MMC=y and CONFIG_MMC=n leads to errors: riscv64-linux-gnu-ld.bfd: cmd/built-in.o: in function `do_mmcops': cmd/mmc.c:984: undefined reference to `get_mmc_num' riscv64-linux-gnu-ld.bfd: cmd/built-in.o: in function `do_mmc_setdsr': cmd/mmc.c:873: undefined reference to `find_mmc_device' Add missing dependency. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index f4cff0c125..2b66285e0d 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1067,6 +1067,7 @@ config CMD_MISC
config CMD_MMC
bool "mmc"
+ depends on MMC
help
MMC memory mapped support.