mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
c4998f9634
Rename this file to make it clear it is for the old networking drivers and not for use with driver model. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
27 lines
687 B
Makefile
27 lines
687 B
Makefile
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
#ccflags-y += -DDEBUG
|
|
|
|
obj-y += checksum.o
|
|
obj-$(CONFIG_CMD_NET) += arp.o
|
|
obj-$(CONFIG_CMD_NET) += bootp.o
|
|
obj-$(CONFIG_CMD_CDP) += cdp.o
|
|
obj-$(CONFIG_CMD_DNS) += dns.o
|
|
ifdef CONFIG_DM_ETH
|
|
obj-$(CONFIG_CMD_NET) += eth-uclass.o
|
|
else
|
|
obj-$(CONFIG_CMD_NET) += eth_legacy.o
|
|
endif
|
|
obj-$(CONFIG_CMD_NET) += eth_common.o
|
|
obj-$(CONFIG_CMD_LINK_LOCAL) += link_local.o
|
|
obj-$(CONFIG_CMD_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_NET) += tftp.o
|