diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2020-10-29 13:47:43 +0900 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-10-30 14:20:27 +0100 |
commit | 3149e524fc1e76ec1420cd17588c724d4232a904 (patch) | |
tree | 3dbadd9c9d59b7900c00be7ab89ba5ecf9c6b859 /drivers/dfu | |
parent | 1c2d1293f608a367488b5dea7250dda8bb8f1d02 (diff) | |
download | u-boot-3149e524fc1e76ec1420cd17588c724d4232a904.tar.gz u-boot-3149e524fc1e76ec1420cd17588c724d4232a904.tar.bz2 u-boot-3149e524fc1e76ec1420cd17588c724d4232a904.zip |
common: update: add a generic interface for FIT image
The main purpose of this patch is to separate a generic interface for
updating firmware using DFU drivers from "auto-update" via tftp.
This function will also be used in implementing UEFI capsule update
in a later commit.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/dfu')
-rw-r--r-- | drivers/dfu/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index 10196f390f..b7427fc4f0 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -22,6 +22,7 @@ config DFU_TFTP bool "DFU via TFTP" select DFU_WRITE_ALT select DFU_OVER_TFTP + select UPDATE_COMMON help This option allows performing update of DFU-managed medium with data sent via TFTP boot. |