summaryrefslogtreecommitdiff
path: root/drivers/dfu/Makefile
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@st.com>2019-10-14 10:28:04 +0300
committerMarek Vasut <marek.vasut+renesas@gmail.com>2019-10-31 14:12:31 +0300
commit6015af28ee6d44d6c7b21f3844c90df9239f66f4 (patch)
treef8c5156bbaa7ad4838688da410e1ef88a5769d59 /drivers/dfu/Makefile
parent0de1022d885a4a637cae2955b4e32e1407696429 (diff)
downloadu-boot-6015af28ee6d44d6c7b21f3844c90df9239f66f4.tar.xz
dfu: add backend for MTD device
Add DFU backend for MTD device: allow to read and write on all MTD device (NAND, SPI-NOR, SPI-NAND,...) For example : > set dfu_alt_info "nand_raw raw 0x0 0x100000" > dfu 0 mtd nand0 This MTD backend provides the same level than dfu nand backend for NAND and dfu sf backend for SPI-NOR; So it can replace booth of them but it also add support of spi-nand. > set dfu_alt_info "nand_raw raw 0x0 0x100000" > dfu 0 mtd spi-nand0 The backend code is based on the "mtd" command introduced by commit 5db66b3aee6f ("cmd: mtd: add 'mtd' command") Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'drivers/dfu/Makefile')
-rw-r--r--drivers/dfu/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dfu/Makefile b/drivers/dfu/Makefile
index 4164f342ac..ebb119f398 100644
--- a/drivers/dfu/Makefile
+++ b/drivers/dfu/Makefile
@@ -5,6 +5,7 @@
obj-$(CONFIG_$(SPL_)DFU) += dfu.o
obj-$(CONFIG_$(SPL_)DFU_MMC) += dfu_mmc.o
+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