mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 21:54:37 +08:00
2d50d68a4c
This commit adds initial support for using tftp for downloading and upgrading firmware on the device. Signed-off-by: Lukasz Majewski <l.majewski@majess.pl> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
14 lines
344 B
Makefile
14 lines
344 B
Makefile
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# Lukasz Majewski <l.majewski@samsung.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_USB_FUNCTION_DFU) += dfu.o
|
|
obj-$(CONFIG_DFU_MMC) += dfu_mmc.o
|
|
obj-$(CONFIG_DFU_NAND) += dfu_nand.o
|
|
obj-$(CONFIG_DFU_RAM) += dfu_ram.o
|
|
obj-$(CONFIG_DFU_SF) += dfu_sf.o
|
|
obj-$(CONFIG_DFU_TFTP) += dfu_tftp.o
|