From: AKASHI Takahiro Date: Tue, 17 Nov 2020 00:27:16 +0000 (+0900) Subject: dfu: simplify the dependencies of DFU_TFTP X-Git-Tag: v2021.10~424^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c32479d1d2d9f0b0a56b674993860825a79dc3cc;p=platform%2Fkernel%2Fu-boot.git dfu: simplify the dependencies of DFU_TFTP Since CONFIG_UPDATE_COMMON always selects CONFIG_DFU_WRITE_ALT, we can drop the latter from dependencies of CONFIG_DFU_TFTP. Fixes: 3149e524fc1e ("common: update: add a generic interface for FIT image") Signed-off-by: AKASHI Takahiro Reviewed-by: Heinrich Schuchardt --- diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index b7427fc..121dc54 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -20,9 +20,8 @@ config DFU_WRITE_ALT config DFU_TFTP bool "DFU via TFTP" - select DFU_WRITE_ALT - select DFU_OVER_TFTP select UPDATE_COMMON + select DFU_OVER_TFTP help This option allows performing update of DFU-managed medium with data sent via TFTP boot.