mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 00:11:51 +01:00 
			
		
		
		
	Merge UDP fastboot support from AOSP: https://android.googlesource.com/platform/external/u-boot/+/android-o-mr1-iot-preview-8 Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Alex Deymo <deymo@google.com> Signed-off-by: Jocelyn Bohr <bohr@google.com> Reviewed-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			32 lines
		
	
	
		
			912 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			912 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0+
 | |
| #
 | |
| # (C) Copyright 2000-2006
 | |
| # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 | |
| 
 | |
| #ccflags-y += -DDEBUG
 | |
| 
 | |
| obj-y += checksum.o
 | |
| obj-$(CONFIG_NET)      += arp.o
 | |
| obj-$(CONFIG_CMD_BOOTP) += bootp.o
 | |
| obj-$(CONFIG_CMD_CDP)  += cdp.o
 | |
| obj-$(CONFIG_CMD_DNS)  += dns.o
 | |
| ifdef CONFIG_DM_ETH
 | |
| obj-$(CONFIG_NET)      += eth-uclass.o
 | |
| else
 | |
| obj-$(CONFIG_NET)      += eth_legacy.o
 | |
| endif
 | |
| obj-$(CONFIG_NET)      += eth_common.o
 | |
| obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
 | |
| obj-$(CONFIG_NET)      += net.o
 | |
| obj-$(CONFIG_CMD_NFS)  += nfs.o
 | |
| obj-$(CONFIG_CMD_PING) += ping.o
 | |
| obj-$(CONFIG_CMD_RARP) += rarp.o
 | |
| obj-$(CONFIG_CMD_SNTP) += sntp.o
 | |
| obj-$(CONFIG_CMD_TFTPBOOT) += tftp.o
 | |
| obj-$(CONFIG_UDP_FUNCTION_FASTBOOT)  += fastboot.o
 | |
| 
 | |
| # Disable this warning as it is triggered by:
 | |
| # sprintf(buf, index ? "foo%d" : "foo", index)
 | |
| # and this is intentional usage.
 | |
| CFLAGS_eth_common.o += -Wno-format-extra-args
 |