From: Heinrich Schuchardt Date: Tue, 21 Jul 2020 18:06:31 +0000 (+0200) Subject: dfu: DFU_MTD depends on CMD_MTDPARTS X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=40c79420d0a70fe0f52f79ab9a8147a2a5e38e2c;p=u-boot.git dfu: DFU_MTD depends on CMD_MTDPARTS Function mtdparts_init() is needed for the DFU MTD driver. Signed-off-by: Heinrich Schuchardt --- diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index 5d45d7d7c2..0eec00ba73 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -71,6 +71,7 @@ config DFU_SF_PART config DFU_MTD bool "MTD back end for DFU" depends on DM_MTD + depends on CMD_MTDPARTS help This option enables using DFU to read and write to on any MTD device.