mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00: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>
13 lines
344 B
Makefile
13 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
|