X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=net%2FMakefile;h=f03d6083268f2b085b9277a72f46685d98c30701;hb=378f9134eba4665ea94a63653393d25418665fda;hp=942595021dad1cf3fccb27531bde72e20e0acd88;hpb=4c89a369c7cd6e7ad3adec4601cfa69fec476164;p=karo-tx-uboot.git diff --git a/net/Makefile b/net/Makefile index 942595021d..f03d608326 100644 --- a/net/Makefile +++ b/net/Makefile @@ -7,11 +7,17 @@ #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 -obj-$(CONFIG_CMD_NET) += eth.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