diff options
author | Pantelis Antoniou <panto@antoniou-consulting.com> | 2013-03-14 05:32:52 +0000 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2013-04-10 15:22:24 +0200 |
commit | c6631764c2a64efc91c84077ca65f4fee153f133 (patch) | |
tree | 6cf8185fc3e3a7b093241c46f948290af408be62 /drivers/dfu/Makefile | |
parent | c4df2f41005063cf1d1dcddeed4bd7f12a5dff77 (diff) | |
download | u-boot-imx-c6631764c2a64efc91c84077ca65f4fee153f133.zip u-boot-imx-c6631764c2a64efc91c84077ca65f4fee153f133.tar.gz u-boot-imx-c6631764c2a64efc91c84077ca65f4fee153f133.tar.bz2 |
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/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dfu/Makefile b/drivers/dfu/Makefile index 7b717bc..153095d 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)) |