From: Miquel Raynal Date: Thu, 3 Oct 2019 17:50:22 +0000 (+0200) Subject: dfu: add dependency on the raw NAND core X-Git-Tag: v2020.01-rc5~19^2~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f3a02d29e84b57fe7f11e7f3de5cd5f2479484b1;p=oweals%2Fu-boot.git dfu: add dependency on the raw NAND core CONFIG_DFU_NAND needs the raw NAND core being compiled. Also fix the colibri_vf defconfig to reflect this dependency. Signed-off-by: Miquel Raynal Reviewed-by: Boris Brezillon --- diff --git a/configs/colibri_vf_defconfig b/configs/colibri_vf_defconfig index 12cfc17086..f34e9b9bea 100644 --- a/configs/colibri_vf_defconfig +++ b/configs/colibri_vf_defconfig @@ -68,6 +68,7 @@ CONFIG_NAND_VF610_NFC=y CONFIG_NAND_VF610_NFC_DT=y CONFIG_SYS_NAND_VF610_NFC_60_ECC_BYTES=y CONFIG_MTD=y +CONFIG_MTD_RAW_NAND=y CONFIG_MTD_UBI=y CONFIG_MTD_UBI_FASTMAP=y CONFIG_PHYLIB=y diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index 02bc28f4b4..75fe0a12c6 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -31,6 +31,7 @@ config DFU_MMC config DFU_NAND bool "NAND back end for DFU" depends on CMD_MTDPARTS + depends on MTD_RAW_NAND help This option enables using DFU to read and write to NAND based storage.