summaryrefslogtreecommitdiff
path: root/drivers/dfu/Makefile
diff options
context:
space:
mode:
authorPantelis Antoniou <panto@antoniou-consulting.com>2013-03-14 05:32:52 +0000
committerMarek Vasut <marex@denx.de>2013-04-10 15:22:24 +0200
commitc6631764c2a64efc91c84077ca65f4fee153f133 (patch)
tree6cf8185fc3e3a7b093241c46f948290af408be62 /drivers/dfu/Makefile
parentc4df2f41005063cf1d1dcddeed4bd7f12a5dff77 (diff)
dfu: NAND specific routines for DFU operation
Support for NAND storage devices to work with the DFU framework. Signed-off-by: Pantelis Antoniou <panto@antoniou-consulting.com> Signed-off-by: Tom Rini <trini@ti.com> Acked-by: Scott Wood <scottwood@freescale.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 7b717bce28..153095d71e 100644
--- a/drivers/dfu/Makefile
+++ b/drivers/dfu/Makefile
@@ -27,6 +27,7 @@ LIB = $(obj)libdfu.o
COBJS-$(CONFIG_DFU_FUNCTION) += dfu.o
COBJS-$(CONFIG_DFU_MMC) += dfu_mmc.o
+COBJS-$(CONFIG_DFU_NAND) += dfu_nand.o
SRCS := $(COBJS-y:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS-y))