diff options
| author | AKASHI Takahiro <[email protected]> | 2020-10-29 13:47:41 +0900 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2020-10-30 14:20:27 +0100 |
| commit | 045fd8b13dc7b08a309043c28fc764c8fd2fde14 (patch) | |
| tree | 3fe5fad33b5adfacd8b694659290631f3b18f029 /drivers/dfu/Makefile | |
| parent | 31393564462ac706c080fbd9625382540a41d27c (diff) | |
dfu: rename dfu_tftp_write() to dfu_write_by_name()
This function is essentially independent from tftp, and will also be
utilised in implementing UEFI capsule update in a later commit.
So just give it a more generic name.
In addition, a new configuration option, CONFIG_DFU_WRITE_ALT, was
introduced so that the file will be compiled with different options,
particularly one added in a later commit.
Signed-off-by: AKASHI Takahiro <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers/dfu/Makefile')
| -rw-r--r-- | drivers/dfu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dfu/Makefile b/drivers/dfu/Makefile index 0d7925c083e..dfbf64da667 100644 --- a/drivers/dfu/Makefile +++ b/drivers/dfu/Makefile @@ -9,5 +9,5 @@ obj-$(CONFIG_$(SPL_)DFU_MTD) += dfu_mtd.o obj-$(CONFIG_$(SPL_)DFU_NAND) += dfu_nand.o obj-$(CONFIG_$(SPL_)DFU_RAM) += dfu_ram.o obj-$(CONFIG_$(SPL_)DFU_SF) += dfu_sf.o -obj-$(CONFIG_$(SPL_)DFU_TFTP) += dfu_tftp.o +obj-$(CONFIG_$(SPL_)DFU_WRITE_ALT) += dfu_alt.o obj-$(CONFIG_$(SPL_)DFU_VIRT) += dfu_virt.o |
