mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
fc054d563b
DSA stands for Distributed Switch Architecture and it covers switches that are connected to the CPU through an Ethernet link and generally use frame tags to pass information about the source/destination ports to/from CPU. Front panel ports are presented as regular ethernet devices in U-Boot and they are expected to support the typical networking commands. DSA switches may be cascaded, DSA class code does not currently support this. Signed-off-by: Alex Marginean <alexandru.marginean@nxp.com> Signed-off-by: Claudiu Manoil <claudiu.manoil@nxp.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#ccflags-y += -DDEBUG
|
|
|
|
obj-$(CONFIG_NET) += arp.o
|
|
obj-$(CONFIG_CMD_BOOTP) += bootp.o
|
|
obj-$(CONFIG_CMD_CDP) += cdp.o
|
|
obj-$(CONFIG_CMD_DNS) += dns.o
|
|
obj-$(CONFIG_DM_DSA) += dsa-uclass.o
|
|
ifdef CONFIG_DM_ETH
|
|
obj-$(CONFIG_NET) += eth-uclass.o
|
|
else
|
|
obj-$(CONFIG_NET) += eth_legacy.o
|
|
endif
|
|
obj-$(CONFIG_DM_MDIO) += mdio-uclass.o
|
|
obj-$(CONFIG_DM_MDIO_MUX) += mdio-mux-uclass.o
|
|
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_PCAP) += pcap.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
|
|
obj-$(CONFIG_CMD_WOL) += wol.o
|
|
obj-$(CONFIG_PROT_UDP) += udp.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
|